using System; using System.Collections.Generic; namespace WMS.BZModels.Dto.FJ.BillRingpalletizinginfoDtos { public class BillRingpalletizinginfoDto { /// /// ID /// public string Id { get; set; } /// /// 仓库ID /// public string WareHouseId { get; set; } public string WarehouseName { get; set; } /// /// 垛形主表ID /// public string BomSetGrpId { get; set; } public string BomSetGrpName { get; set; } public string BomSetGrpCode { get; set; } /// /// 工字轮个数 /// public int HWCountQty { get; set; } /// /// BomCode(投料信息) /// public string BomCode { get; set; } /// /// 已有工字轮个数 /// public int HaveQty { get; set; } /// /// 是否出库 /// public bool Out { get; set; } /// /// 备注 /// public string Memo { get; set; } /// /// 创建用户 /// public string AddWho { get; set; } /// /// 更新用户 /// public string EditWho { get; set; } /// /// 创建时间 /// public DateTime AddTime { get; set; } /// /// 更新时间 /// public DateTime EditTime { get; set; } /// /// 上一次分配时的放置位信息 /// public int? LastXYNO { get; set; } } public class BillRingpalletizinginfoQueryDto : PagerInfo { /// /// ID /// public string Id { get; set; } /// /// 仓库ID /// public string WareHouseId { get; set; } /// /// 垛形主表ID /// public string BomSetGrpId { get; set; } public string BomSetGrpName { get; set; } public string BomSetGrpCode { get; set; } /// /// 工字轮个数 /// public int HWCountQty { get; set; } /// /// BomCode(投料信息) /// public string BomCode { get; set; } /// /// 已有工字轮个数 /// public int HaveQty { get; set; } /// /// 是否出库 /// public string Out { get; set; } /// /// 备注 /// public string Memo { get; set; } public DateTime? AddTimeFrom { get; set; } public DateTime? AddTimeTo { get; set; } } }