/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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 WIDESEA.Entity.SystemModels; namespace WIDESEA.Entity.DomainModels { [Entity(TableCnName = "组盘信息头表",TableName = "Dt_boxing_head")] public class Dt_boxing_head:BaseEntity { /// ///ID /// [Key] [Display(Name ="ID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid boxhead_id { get; set; } /// ///仓库/库区ID /// [Display(Name ="仓库/库区ID")] [MaxLength(80)] [Column(TypeName="nvarchar(80)")] public string boxhead_areaid { get; set; } /// ///托盘号 /// [Display(Name ="托盘号")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] [Required(AllowEmptyStrings=false)] public string boxhead_barcode { get; set; } /// ///创建者 /// [Display(Name ="创建者")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] [Required(AllowEmptyStrings=false)] public string boxhead_creator { get; set; } /// ///组盘开始时间 /// [Display(Name ="组盘开始时间")] [Column(TypeName="datetime")] [Required(AllowEmptyStrings=false)] public DateTime boxhead_createtime { get; set; } /// ///最后一次组盘时间 /// [Display(Name ="最后一次组盘时间")] [Column(TypeName="datetime")] public DateTime? boxhead_lastdatetime { get; set; } /// ///预留1 /// [Display(Name ="预留1")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] public string boxhead_text1 { get; set; } /// ///预留2 /// [Display(Name ="预留2")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] public string boxhead_text2 { get; set; } /// ///预留3 /// [Display(Name ="预留3")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] public string boxhead_text3 { get; set; } /// ///托盘自身重量 /// [Display(Name ="托盘自身重量")] [MaxLength(100)] [Column(TypeName="nvarchar(100)")] public string boxhead_weight { get; set; } } }