/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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_hty")] public partial class dt_boxing_hty:BaseEntity { /// ///ID /// [Key] [Display(Name ="ID")] [Column(TypeName="int")] [Editable(true)] [Required(AllowEmptyStrings=false)] public int ID { get; set; } /// ///组盘者 /// [Display(Name ="组盘者")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] [Editable(true)] [Required(AllowEmptyStrings=false)] public string boxhead_creator { get; set; } /// ///组盘时间 /// [Display(Name ="组盘时间")] [Column(TypeName="datetime")] [Editable(true)] [Required(AllowEmptyStrings=false)] public DateTime boxhead_createtime { get; set; } /// ///组盘状态 /// [Display(Name ="组盘状态")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] [Editable(true)] [Required(AllowEmptyStrings=false)] public string boxdtl_state { get; set; } /// ///组盘完成时间 /// [Display(Name ="组盘完成时间")] [Column(TypeName="datetime")] [Editable(true)] public DateTime? boxhead_lastdatetime { get; set; } /// ///组盘地址 /// [Display(Name ="组盘地址")] [MaxLength(80)] [Column(TypeName="nvarchar(80)")] [Required(AllowEmptyStrings=false)] public string boxhead_address { get; set; } /// ///SN号 /// [Display(Name ="SN号")] [MaxLength(80)] [Column(TypeName="nvarchar(80)")] [Required(AllowEmptyStrings=false)] public string boxhead_wheelSN { get; set; } /// ///类型 /// [Display(Name ="类型")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] public string boxhead_wheeltype { get; set; } /// ///名称 /// [Display(Name ="名称")] [Column(TypeName="uniqueidentifier")] public Guid? boxdtl_name { get; set; } } }