using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.DataEntity { /// ///库存箱支信息表 /// [SugarTable("DataBoxInfo")] public class DataBoxInfo:BaseEntity { /// /// Desc:库存明细 /// Default: /// Nullable:False /// public int StockDetailId { get; set; } /// /// Desc:托盘绑定号 /// Default: /// Nullable:True /// public int? BindNo {get;set;} /// /// Desc:箱号 /// Default: /// Nullable:True /// public string BoxNo {get;set;} /// /// Desc:盒号 /// Default: /// Nullable:True /// public string BoxNo2 {get;set;} /// /// Desc:支号 /// Default: /// Nullable:True /// public string BoxNo3 {get;set;} /// /// Desc:托盘号 /// Default: /// Nullable:False /// public string PalletNo {get;set;} /// /// Desc:二级托盘号 /// Default: /// Nullable:True /// public string PalletNo2 {get;set;} /// /// Desc:三级托盘号 /// Default: /// Nullable:True /// public string PalletNo3 {get;set;} /// /// Desc:数量 /// Default: /// Nullable:False /// public decimal Qty {get;set;} /// /// Desc:整箱数量 /// Default: /// Nullable:True /// public decimal? FullQty {get;set;} /// /// Desc:状态 /// Default: /// Nullable:True /// public string Status {get;set;} /// /// Desc:批次号 /// Default: /// Nullable:True /// public string LotNo {get;set;} /// /// Desc:批次描述 /// Default: /// Nullable:True /// public string LotText {get;set;} /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string SkuNo {get;set;} /// /// Desc:物料名称 /// Default: /// Nullable:True /// public string SkuName {get;set;} /// /// Desc:规格 /// Default: /// Nullable:True /// public string Standard {get;set;} /// /// Desc:生产日期 /// Default: /// Nullable:True /// public DateTime? ProductionTime {get;set;} /// /// 过期时间 /// public DateTime? ExpirationTime { get; set; } /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot {get;set;} /// /// Desc:检验标记 /// Default: /// Nullable:True /// public string InspectMark {get;set;} /// /// Desc:零箱标记 /// Default: /// Nullable:True /// public string BitBoxMark {get;set;} /// /// Desc:质量状态 /// Default: /// Nullable:True /// public string InspectStatus {get;set;} /// /// Desc:复检日期 /// Default: /// Nullable:True /// public DateTime? InspectTime {get;set;} /// /// Desc:备用字段 存储期至 /// Default: /// Nullable:True /// public string UDF1 { get; set; } } }