using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm { public class BoxInfoVm : IndexPage { public int? Id { get; set; } /// /// Desc:入库单号 /// Default: /// Nullable:False /// public string ASNNo { get; set; } /// /// Desc:入库明细号 /// Default: /// Nullable:False /// public int? ASNDetailNo { 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 ProductionTime { get; set; } /// /// Desc:过期时间 /// Default: /// Nullable:True /// public DateTime? ExpirationTime { get; set; } /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot { get; set; } /// /// Desc:检验标记 /// Default:0 /// 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; } public string SkuNo { get; set; } public string SkuName { get; set; } public string Origin { get; set; } public int? CreateUser { get; set; } public int? Warranty { get; set; } /// /// 是否回库,0:否 1:是 /// public int IsHuiKu { get; set; } = 0; } public class BoxInfoVms { /// /// 操作类型 /// public string OperType { get; set; } public int? CreateUser { get; set; } public List ListBoxInfo { get; set; } } public class BoxQtyInfo { public string boxNo { get; set; } public decimal realQty { get; set; } public string bitBoxMark { get; set; } } /// /// 物料标签Vm /// public class LabelBoxInfoVm : IndexPage { public string AsnNo { get; set; } public string BoxNo { get; set; } public string SkuNo { get; set; } public string LotNo { get; set; } public string SupplierLot { get; set; } public string Status { get; set; } public string ProductionTime { get; set; } } /// /// 生成物料标签Vm /// public class AddLabelBoxInfoVm { public int Id { get; set; } public string IsReset { get; set; } public string ArriveQty { get; set; } public string ProductionTime { get; set; } public string ExpirationTime { get; set; } public string StoreTime { get; set; } public string SupplierLot { get; set; } } /// /// 补打物料标签Vm /// public class BuDaLabelBoxVm { public string BoxNo { get; set; } public string EndBoxNo { get; set; } public string BoxNo2 { get; set; } public string EndBoxNo2 { get; set; } public string Type { get; set; } } /// /// 线边库物料标签 /// public class LabelsVm { public string SkuNo { get; set; } public string SkuName { get; set; } public string LotNo { get; set; } public string TimeFrom { get; set; } public string TimeEnd { get; set; } public string SkuNum { get; set; } public int? userId { get; set; } } }