using System; using System.Collections.Generic; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.DataEntity { public class DataBoxDto { /// /// Desc:箱号 /// Default: /// Nullable:True /// public string BoxNo { get; set; } /// /// Desc:批次号 /// Default: /// Nullable:True /// public string LotNo { get; set; } /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot { 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 decimal Qty { get; set; } /// /// Desc:质量状态 /// Default: /// Nullable:True /// public string InspectStatus { get; set; } public List InfoList { get; set; } } public class DataBoxInfoDto { public string BoxNo2 { get; set; } public decimal Qty2 { get; set; } } }