/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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 = "VW_OP_YARD_BOOK_AREA")] public class VW_OP_YARD_BOOK_AREA:BaseEntity { /// /// /// [Key] [Display(Name ="GID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid GID { get; set; } /// /// /// [Display(Name ="BSNO")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string BSNO { get; set; } /// /// /// [Display(Name ="CUSTOMERNAME")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string CUSTOMERNAME { get; set; } /// /// /// [Display(Name ="GOODNAME")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string GOODNAME { get; set; } /// /// /// [Display(Name ="ENTERDATE")] [Column(TypeName="datetime")] public DateTime? ENTERDATE { get; set; } /// /// /// [Display(Name ="TRUCKNO")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string TRUCKNO { get; set; } /// /// /// [Display(Name ="LinkTel")] [MaxLength(510)] [Column(TypeName="nvarchar(510)")] public string LinkTel { get; set; } /// /// /// [Display(Name ="BoxCode")] [MaxLength(510)] [Column(TypeName="nvarchar(510)")] public string BoxCode { get; set; } /// /// /// [Display(Name ="BoxType")] [MaxLength(510)] [Column(TypeName="nvarchar(510)")] public string BoxType { get; set; } /// /// /// [Display(Name ="BoxWeigth")] [DisplayFormat(DataFormatString="10,2")] [Column(TypeName="decimal")] public decimal? BoxWeigth { get; set; } /// /// /// [Display(Name ="ENTERDATE_ACTUAL")] [Column(TypeName="datetime")] public DateTime? ENTERDATE_ACTUAL { get; set; } /// /// /// [Display(Name ="OutDate")] [Column(TypeName="datetime")] public DateTime? OutDate { get; set; } /// /// /// [Display(Name ="ISTwoBox")] [Column(TypeName="bit")] public bool? ISTwoBox { get; set; } /// /// /// [Display(Name ="REMARK")] [MaxLength(800)] [Column(TypeName="varchar(800)")] public string REMARK { get; set; } /// /// /// [Display(Name ="EnterOrderGid")] [Column(TypeName="uniqueidentifier")] public Guid? EnterOrderGid { get; set; } /// /// /// [Display(Name ="DAYS")] [Column(TypeName="int")] public int? DAYS { get; set; } /// /// /// [Display(Name ="BILLSTATUS_CUST")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string BILLSTATUS_CUST { get; set; } /// /// /// [Display(Name ="BoxStatus")] [MaxLength(510)] [Column(TypeName="nvarchar(510)")] public string BoxStatus { get; set; } /// /// /// [Display(Name ="BondType")] [Column(TypeName="int")] public int? BondType { get; set; } /// /// /// [Display(Name ="AREACODE")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string AREACODE { get; set; } /// /// /// [Display(Name ="EnterWeight")] [DisplayFormat(DataFormatString="18,2")] [Column(TypeName="decimal")] public decimal? EnterWeight { get; set; } /// /// /// [Display(Name ="OutWeight")] [DisplayFormat(DataFormatString="18,2")] [Column(TypeName="decimal")] public decimal? OutWeight { get; set; } /// /// /// [Display(Name ="NetWeight")] [DisplayFormat(DataFormatString="19,2")] [Column(TypeName="decimal")] public decimal? NetWeight { get; set; } /// /// /// [Display(Name ="Status")] [Column(TypeName="smallint")] [Required(AllowEmptyStrings=false)] public int Status { get; set; } /// /// /// [Display(Name ="IsCollectTRUCK")] [Column(TypeName="bit")] public bool? IsCollectTRUCK { get; set; } /// /// /// [Display(Name ="IsCollectBox")] [Column(TypeName="bit")] public bool? IsCollectBox { get; set; } /// /// /// [Display(Name ="IsUpLoadPackBox")] [Column(TypeName="bit")] public bool? IsUpLoadPackBox { get; set; } /// /// /// [Display(Name ="BusinessType")] [Column(TypeName="int")] public int? BusinessType { get; set; } /// /// /// [Display(Name ="AuditStatus")] [Column(TypeName="int")] public int? AuditStatus { get; set; } /// /// /// [Display(Name ="LimitRatio")] [Column(TypeName="decimal")] public decimal? LimitRatio { get; set; } /// /// /// [Display(Name ="TrainId")] [Column(TypeName="uniqueidentifier")] public Guid? TrainId { get; set; } /// /// /// [Display(Name ="TrainNum")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string TrainNum { get; set; } /// /// /// [Display(Name ="OrgId")] [MaxLength(100)] [Column(TypeName="varchar(100)")] public string OrgId { get; set; } /// /// /// [Display(Name ="MaterialStatus")] [Column(TypeName="int")] public int? MaterialStatus { get; set; } } }