/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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 = "OP_YARD_TURNOVERRECORDS",TableName = "OP_YARD_TURNOVERRECORDS")] public class OP_YARD_TURNOVERRECORDS:BaseEntity { /// /// /// [Key] [Display(Name ="GID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid GID { get; set; } /// /// /// [Display(Name ="BILLTYPE")] [Column(TypeName="bit")] [Required(AllowEmptyStrings=false)] public bool BILLTYPE { get; set; } /// /// /// [Display(Name ="TRUCKNO")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string TRUCKNO { get; set; } /// /// /// [Display(Name ="BoxWeigth")] [DisplayFormat(DataFormatString="18,2")] [Column(TypeName="decimal")] public decimal? BoxWeigth { get; set; } /// /// /// [Display(Name ="BoxCode")] [MaxLength(255)] [Column(TypeName="varchar(255)")] public string BoxCode { get; set; } /// /// /// [Display(Name ="CORPID")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string CORPID { get; set; } /// /// /// [Display(Name ="CreateDate")] [Column(TypeName="datetime")] public DateTime? CreateDate { get; set; } /// /// /// [Display(Name ="CreateID")] [Column(TypeName="uniqueidentifier")] public Guid? CreateID { get; set; } /// /// /// [Display(Name ="Creator")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string Creator { get; set; } /// /// /// [Display(Name ="TURNOVERDATE")] [Column(TypeName="datetime")] public DateTime? TURNOVERDATE { get; set; } /// /// /// [Display(Name ="Modifier")] [MaxLength(50)] [Column(TypeName="varchar(50)")] public string Modifier { get; set; } /// /// /// [Display(Name ="ModifyDate")] [Column(TypeName="datetime")] public DateTime? ModifyDate { get; set; } /// /// /// [Display(Name ="ModifyID")] [Column(TypeName="uniqueidentifier")] public Guid? ModifyID { get; set; } /// /// /// [Display(Name ="REMARK")] [MaxLength(800)] [Column(TypeName="varchar(800)")] public string REMARK { get; set; } /// /// /// [Display(Name ="BoxCode2")] [MaxLength(100)] [Column(TypeName="varchar(100)")] public string BoxCode2 { get; set; } /// /// /// [Display(Name ="ISTwoBox")] [Column(TypeName="bit")] [Required(AllowEmptyStrings=false)] public bool ISTwoBox { get; set; } /// /// /// [Display(Name ="BSNO")] [Column(TypeName="uniqueidentifier")] public Guid? BSNO { get; set; } } }