/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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_detail")] public class Dt_boxing_detail : BaseEntity { /// ///ID /// [Key] [Display(Name = "ID")] [Column(TypeName = "uniqueidentifier")] [Required(AllowEmptyStrings = false)] public Guid boxdtl_id { get; set; } /// ///组盘头id /// [Display(Name = "组盘头id")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] [Required(AllowEmptyStrings = false)] public string boxdtl_headid { get; set; } /// ///物料id /// [Display(Name = "物料id")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] [Required(AllowEmptyStrings = false)] public string boxdtl_materielid { get; set; } /// ///数量 /// [Display(Name = "数量")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_qty { get; set; } /// ///预留1 /// [Display(Name = "预留1")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_text1 { get; set; } /// /// 批次 /// [Display(Name = "预留2")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_text2 { get; set; } /// ///生产有效日期 - 2024年6月27日新增使用 /// [Display(Name = "预留3")] [MaxLength(255)] [Column(TypeName = "varchar(255)")] public string boxdtl_text3 { get; set; } /// ///组盘时间 /// [Display(Name = "组盘时间")] [Column(TypeName = "datetime")] public DateTime? boxdtl_date { get; set; } /// /// /// [Display(Name = "boxdtl_text4")] [MaxLength(255)] [Column(TypeName = "varchar(255)")] public string boxdtl_text4 { get; set; } /// ///轴承编号 /// [Display(Name = "轴承编号")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_number { get; set; } /// ///制造日期 /// [Display(Name = "制造日期")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_madeDate { get; set; } /// ///制造单位 /// [Display(Name = "制造单位")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_madeUnit { get; set; } /// ///托盘条码 /// [Display(Name = "托盘条码")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_barcode { get; set; } /// ///轴承型号 /// [Display(Name = "轴承型号")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_type { get; set; } /// ///车型 /// [Display(Name = "车型")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_carType { get; set; } /// ///测量标准 /// [Display(Name = "测量标准")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_standard { get; set; } /// ///收入单位 /// [Display(Name = "收入单位")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_inboundUnit { get; set; } /// ///轴承识别号 /// [Display(Name = "轴承识别号")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_identifierNo { get; set; } /// ///操作者 /// [Display(Name = "操作者")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_operator { get; set; } /// /// /// [Display(Name = "boxdtl_text5")] [MaxLength(255)] [Column(TypeName = "varchar(255)")] public string boxdtl_text5 { get; set; } /// ///入库绑定的唯一ID,比如入库订单号 /// [Display(Name = "入库绑定的唯一ID,比如入库订单号")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string boxdtl_reuqstKey { get; set; } /// ///轴承唯一码 /// [Display(Name = "轴承唯一码")] [MaxLength(255)] [Column(TypeName = "varchar(255)")] public string boxdtl_qrCode { get; set; } } }