/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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_CTNMNG_STOREAREAINFO")] public class VW_OP_YARD_CTNMNG_STOREAREAINFO:BaseEntity { /// /// /// [Key] [Display(Name ="GID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid GID { get; set; } /// /// /// [Display(Name ="AREACODE")] [MaxLength(50)] [Column(TypeName="varchar(50)")] [Required(AllowEmptyStrings=false)] public string AREACODE { get; set; } /// ///库位 /// [Display(Name ="库位")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string AREANAME { get; set; } /// ///仓库 /// [Display(Name ="仓库")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string STOREHOUSENAME { get; set; } /// /// /// [Display(Name ="PID1")] [Column(TypeName="uniqueidentifier")] public Guid? PID1 { get; set; } /// /// /// [Display(Name ="PID2")] [Column(TypeName="uniqueidentifier")] public Guid? PID2 { get; set; } /// ///业务来源 /// [Display(Name ="业务来源")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string SOURCETYPE { get; set; } /// ///箱号 /// [Display(Name ="箱号")] [MaxLength(20)] [Column(TypeName="varchar(20)")] public string CNTRNO { get; set; } /// ///客户名称 /// [Display(Name ="客户名称")] [MaxLength(36)] [Column(TypeName="varchar(36)")] public string CUSTOMERNAME { get; set; } /// /// /// [Display(Name ="INFOCLIENTGID")] [MaxLength(36)] [Column(TypeName="varchar(36)")] public string INFOCLIENTGID { get; set; } /// /// /// [Display(Name ="STOREHOUSEAREACODE")] [MaxLength(4)] [Column(TypeName="varchar(4)")] public string STOREHOUSEAREACODE { get; set; } /// ///存箱日期 /// [Display(Name ="存箱日期")] [Column(TypeName="datetime")] public DateTime? INDATE { get; set; } } }