/* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *如果数据库字段发生变化,请在代码生器重新生成此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 = "VV_ContainerInfo")] public class VV_ContainerInfo : BaseEntity { /// ///主键ID /// [Key] [Display(Name = "主键ID")] [Column(TypeName = "uniqueidentifier")] [Required(AllowEmptyStrings = false)] public Guid containerdtl_id { get; set; } /// ///容器头id /// [Display(Name = "容器头id")] [Column(TypeName = "uniqueidentifier")] [Required(AllowEmptyStrings = false)] public Guid containerhead_id { get; set; } /// ///库区/区域ID /// [Display(Name = "库区/区域ID")] [MaxLength(80)] [Column(TypeName = "nvarchar(80)")] public string containerhead_areaid { get; set; } /// ///托盘号 /// [Display(Name = "托盘号")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] [Required(AllowEmptyStrings = false)] public string containerhead_barcode { get; set; } /// ///物料名称 /// [Display(Name = "物料名称")] [MaxLength(400)] [Column(TypeName = "nvarchar(400)")] [Required(AllowEmptyStrings = false)] public string materiel_name { get; set; } /// ///物料id /// [Display(Name = "物料id")] [MaxLength(200)] [Column(TypeName = "nvarchar(200)")] [Required(AllowEmptyStrings = false)] public string materiel_id { get; set; } /// ///物料类型 /// [Display(Name = "物料类型")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string materiel_type { get; set; } /// ///计量单位 /// [Display(Name = "计量单位")] [MaxLength(20)] [Column(TypeName = "nvarchar(20)")] public string materiel_unit { get; set; } /// ///货位id /// [Display(Name = "货位id")] [MaxLength(510)] [Column(TypeName = "nvarchar(510)")] public string location_id { get; set; } /// ///货位状态 /// [Display(Name = "货位状态")] [MaxLength(510)] [Column(TypeName = "nvarchar(510)")] public string location_state { get; set; } /// ///货位是否锁定 /// [Display(Name = "货位是否锁定")] [Column(TypeName = "bit")] [Required(AllowEmptyStrings = false)] public bool location_islocked { get; set; } /// ///行 /// [Display(Name = "行")] [Column(TypeName = "int")] [Required(AllowEmptyStrings = false)] public int location_line { get; set; } /// ///列 /// [Display(Name = "列")] [Column(TypeName = "int")] [Required(AllowEmptyStrings = false)] public int location_column { get; set; } /// ///层 /// [Display(Name = "层")] [Column(TypeName = "int")] [Required(AllowEmptyStrings = false)] public int location_layer { get; set; } /// ///创建者 /// [Display(Name = "创建者")] [MaxLength(255)] [Column(TypeName = "varchar(255)")] public string containerdtl_creator { get; set; } /// ///创建时间 /// [Display(Name = "创建时间")] [Column(TypeName = "datetime")] public DateTime? containerdtl_createtime { get; set; } /// ///预留1 /// [Display(Name = "预留1")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string containerdtl_text1 { get; set; } /// ///预留2 /// [Display(Name = "预留2")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string containerdtl_text2 { get; set; } /// ///预留3 /// [Display(Name = "预留3")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string containerdtl_text3 { get; set; } /// ///后挡内径合格否 /// [Display(Name = "后挡内径合格否")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_four_result { get; set; } /// ///油档测量结果 /// [Display(Name = "油档测量结果")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_three_result { get; set; } /// ///轴承外径结果 /// [Display(Name = "轴承外径结果")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_out_value { get; set; } /// /// /// [Display(Name = "containerhead_requstkey")] [MaxLength(200)] [Column(TypeName = "nvarchar(200)")] public string containerhead_requstkey { get; set; } /// ///深度 /// [Display(Name = "深度")] [Column(TypeName = "int")] public int? location_deep { get; set; } /// ///物料ID /// [Display(Name = "物料ID")] [MaxLength(80)] [Column(TypeName = "nvarchar(80)")] [Required(AllowEmptyStrings = false)] public string containerdtl_materielid { get; set; } /// /// /// [Display(Name = "containerdtl_requstkey")] [MaxLength(80)] [Column(TypeName = "nvarchar(80)")] public string containerdtl_requstkey { get; set; } /// ///操作者 /// [Display(Name = "操作者")] [MaxLength(20)] [Column(TypeName = "nvarchar(20)")] public string containerdtl_operator { get; set; } /// ///轴承识别号 /// [Display(Name = "轴承识别号")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string containerdtl_identifierNo { get; set; } /// ///收入单位 /// [Display(Name = "收入单位")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string containerdtl_inboundUnit { get; set; } /// ///测量标准 /// [Display(Name = "测量标准")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string containerdtl_standard { get; set; } /// ///车型 /// [Display(Name = "车型")] [Column(TypeName = "nvarchar(100)")] public string containerdtl_carType { get; set; } /// ///轴承型号 /// [Display(Name = "轴承型号")] [Column(TypeName = "nvarchar(100)")] public string containerdtl_type { get; set; } /// ///托盘条码 /// [Display(Name = "托盘条码")] [MaxLength(80)] [Column(TypeName = "nvarchar(80)")] public string containerdtl_barcode { get; set; } /// ///制造单位 /// [Display(Name = "制造单位")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string containerdtl_madeUnit { get; set; } /// ///制造日期 /// [Display(Name = "制造日期")] [Column(TypeName = "datetime")] public DateTime? containerdtl_madeDate { get; set; } /// ///轴承编号 /// [Display(Name = "轴承编号")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string containerdtl_number { get; set; } /// ///轴承条码 /// [Display(Name = "轴承条码")] [MaxLength(510)] [Column(TypeName = "nvarchar(510)")] public string containerdtl_goodsCode { get; set; } /// /// /// [Display(Name = "csize_container_detail_id")] [MaxLength(200)] [Column(TypeName = "nvarchar(200)")] [Required(AllowEmptyStrings = false)] public string csize_container_detail_id { get; set; } /// /// /// [Display(Name = "csize_barcode")] [MaxLength(100)] [Column(TypeName = "nvarchar(100)")] public string csize_barcode { get; set; } /// ///轴承内径值 /// [Display(Name = "轴承内径值")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_in_value { get; set; } /// ///轴承内径结果 /// [Display(Name = "轴承内径结果")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_in_result { get; set; } /// ///挡油内径平均值 /// [Display(Name = "挡油内径平均值")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_three_3 { get; set; } /// ///后挡内径平均值 /// [Display(Name = "后挡内径平均值")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_four_3 { get; set; } /// ///轴承外径结果 /// [Display(Name = "轴承外径结果")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string csize_out_result { get; set; } /// ///入库时间 /// [Display(Name = "入库时间")] [Column(TypeName = "datetime")] [Required(AllowEmptyStrings = false)] public DateTime containerhead_createtime { get; set; } /// ///空托重量 /// [Display(Name = "空托重量")] [MaxLength(50)] [Column(TypeName = "nvarchar(50)")] public string containerhead_palletweight { get; set; } /// ///实托重量 /// [Display(Name = "实托重量")] [MaxLength(255)] [Column(TypeName = "nvarchar(255)")] public string containerdtl_goodsWeight { get; set; } /// ///称重结果 /// [Display(Name = "称重结果")] [DisplayFormat(DataFormatString = "18,2")] [Column(TypeName = "decimal")] [Editable(true)] public decimal? containerdtl_standardResult { get; set; } /// ///入库时长 /// [Display(Name = "入库时长")] [MaxLength(255)] [Column(TypeName = "nvarchar(255)")] public string DateDiffResult { get; set; } /// /// 质检确认 /// [Display(Name = "质检确认")] [Column(TypeName = "bit")] [Editable(true)] public bool? containerdtl_qualityCheck { get; set; } /// ///质检确认时间 /// [Display(Name = "质检确认时间")] [Column(TypeName = "datetime")] public DateTime? containerdtl_qualityCheckTime { get; set; } /// ///质检确认人 /// [Display(Name = "质检确认人")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string containerdtl_qualityCheckUser { get; set; } /// /// 收货确认 /// [Display(Name = "收货确认")] [Column(TypeName = "bit")] [Editable(true)] public bool? containerdtl_takeGoogsCheck { get; set; } /// ///收货确认时间 /// [Display(Name = "收货确认时间")] [Column(TypeName = "datetime")] public DateTime? containerdtl_takeGoogsCheckTime { get; set; } /// ///收货确认人 /// [Display(Name = "收货确认人")] [MaxLength(40)] [Column(TypeName = "nvarchar(40)")] public string containerdtl_takeGoogsCheckUser { get; set; } [Display(Name = "测量货位是否异常")] [MaxLength(50)] [Column(TypeName = "nvarcher(50)")] public string containerdtl_isError { get; set; } /// /// 批次 /// [Display(Name = "批次")] [MaxLength(20)] [Column(TypeName = "varchar(20)")] public string containerdtl_lotNumber { get; set; } /// /// 生产日期 /// [Display(Name = "生产日期")] [MaxLength(30)] [Column(TypeName = "nvarchar(30)")] public string containerdtl_ProductDate { get; set; } } }