|
|
|
|
/*
|
|
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此Model
|
|
|
|
|
*/
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using VOL.Entity.SystemModels;
|
|
|
|
|
|
|
|
|
|
namespace VOL.Entity.DomainModels
|
|
|
|
|
{
|
|
|
|
|
[Entity(TableCnName = "费用备注明细",TableName = "OP_WMS_PROJECT_FEEREMARK")]
|
|
|
|
|
public class OP_WMS_PROJECT_FEEREMARK:BaseEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Key]
|
|
|
|
|
[Display(Name ="ID")]
|
|
|
|
|
[Column(TypeName="int")]
|
|
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="FEEID")]
|
|
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
|
|
public Guid FEEID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="STARTDATE")]
|
|
|
|
|
[Column(TypeName="datetime")]
|
|
|
|
|
public DateTime? STARTDATE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="ENDDATE")]
|
|
|
|
|
[Column(TypeName="datetime")]
|
|
|
|
|
public DateTime? ENDDATE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="QUANTITY")]
|
|
|
|
|
[Column(TypeName="numeric")]
|
|
|
|
|
public decimal? QUANTITY { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name = "PRICE")]
|
|
|
|
|
[Column(TypeName = "numeric")]
|
|
|
|
|
public decimal? PRICE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name = "AMOUNT")]
|
|
|
|
|
[Column(TypeName = "numeric")]
|
|
|
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
|
|
|
|
|
|
[Display(Name = "PKGS")]
|
|
|
|
|
[Column(TypeName = "numeric")]
|
|
|
|
|
public decimal? PKGS { get; set; }
|
|
|
|
|
|
|
|
|
|
[Display(Name = "DAYS")]
|
|
|
|
|
[Column(TypeName = "numeric")]
|
|
|
|
|
public decimal? DAYS { get; set; }
|
|
|
|
|
|
|
|
|
|
[Display(Name = "DOWMSNO")]
|
|
|
|
|
[Column(TypeName = "varchar(50)")]
|
|
|
|
|
public string DOWMSNO { get; set; }
|
|
|
|
|
|
|
|
|
|
[Display(Name = "DOGID")]
|
|
|
|
|
[Column(TypeName = "uniqueidentifier")]
|
|
|
|
|
public Guid DOGID { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|