/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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_inboundorder_head_hty")] public class Dt_inboundorder_head_hty:BaseEntity { /// ///主键ID /// [Key] [Display(Name ="主键ID")] [Column(TypeName="uniqueidentifier")] [Required(AllowEmptyStrings=false)] public Guid inorderhead_id { get; set; } /// ///仓库/区域id /// [Display(Name ="仓库/区域id")] [MaxLength(80)] [Column(TypeName="nvarchar(80)")] public string inorderhead_areaid { get; set; } /// ///订单号 /// [Display(Name ="订单号")] [MaxLength(60)] [Column(TypeName="nvarchar(60)")] [Required(AllowEmptyStrings=false)] public string inorderhead_number { get; set; } /// ///订单类型 /// [Display(Name ="订单类型")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] [Required(AllowEmptyStrings=false)] public string inorderhead_type { get; set; } /// ///创建者 /// [Display(Name ="创建者")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] public string inorderhead_creator { get; set; } /// ///创建时间 /// [Display(Name ="创建时间")] [Column(TypeName="datetime")] [Required(AllowEmptyStrings=false)] public DateTime inorderhead_createtime { get; set; } /// ///完成时间 /// [Display(Name ="完成时间")] [Column(TypeName="datetime")] [Required(AllowEmptyStrings=false)] public DateTime inorderhead_finishtime { get; set; } /// ///操作类型 /// [Display(Name ="操作类型")] [MaxLength(20)] [Column(TypeName="nvarchar(20)")] [Required(AllowEmptyStrings=false)] public string inorderhead_operatetype { get; set; } /// ///操作者 /// [Display(Name ="操作者")] [MaxLength(40)] [Column(TypeName="nvarchar(40)")] public string inorderhead_compeletor { get; set; } /// ///原表头id /// [Display(Name ="原表头id")] [MaxLength(80)] [Column(TypeName="nvarchar(80)")] public string inorderhead_sourceid { get; set; } } }