using System; using System.Collections.Generic; using System.Text; namespace Model.ModelDto.BllAsnDto { public class PalletUnbindDto { /// /// 解绑托盘号 /// public string UpbindPalletNo { get; set; } /// /// 绑定托盘号 /// public string BindPalletNo { get; set; } /// /// 箱号 /// public string BoxNo { get; set; } /// /// 批次号 /// public string LotNo { get; set; } /// /// 物料编码 /// public string SkuNo { get; set; } /// /// 物料名称 /// public string SkuName { get; set; } /// /// 规格 /// public string Standard { get; set; } /// /// 批次描述 /// public string LotText { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 创建人名称 /// public string CreateUserName { get; set; } } }