using System; using System.Collections.Generic; namespace WMS.BZModels.Dto.FJ.WCSPalletizingDtos { public class WCSPalletizingDto { /// /// ID /// public string Id { get; set; } /// /// 任务Id /// public string TaskId { get; set; } /// /// 任务Id /// public string PalleCode { get; set; } /// /// 垛型编码 /// public string Code { get; set; } /// /// 短垛型编码 /// public int ShortCode { get; set; } /// /// 帘线物料编码 /// public string ProMaterCode { get; set; } /// /// 码垛工位 /// public string PalletizingStation { get; set; } /// /// 产品总数 /// public int CountQty { get; set; } /// /// 托盘类型 /// public string TpTypeCode { get; set; } /// /// 层数 /// public int LayerCountQty { get; set; } /// /// 垛型大类 /// public int StampType { get; set; } /// /// 是否结束 /// public bool Finish { get; set; } /// /// 当前所有的物料号 /// public string MatCodeList { get; set; } /// /// 创建时间 /// public DateTime AddTime { get; set; } /// /// 仓库编号 /// public string WarehouseCode { get; set; } public string WarehouseName { get; set; } /// /// 执行设备编号 /// public string DeviceCode { get; set; } } public class WCSPalletizingQueryDto : PagerInfo { /// /// 任务Id /// public string TaskId { get; set; } /// /// 任务Id /// public string PalleCode { get; set; } /// /// 垛型编码 /// public string Code { get; set; } /// /// 帘线物料编码 /// public string ProMaterCode { get; set; } /// /// 码垛工位 /// public string PalletizingStation { get; set; } /// /// 产品总数 /// public string CountQty { get; set; } /// /// 托盘类型 /// public string TpTypeCode { get; set; } /// /// 层数 /// public string LayerCountQty { get; set; } /// /// 是否结束 /// public string Finish { get; set; } /// /// 当前所有的物料号 /// public string MatCodeList { get; set; } public DateTime? AddTimeFrom { get; set; } public DateTime? AddTimeTo { get; set; } /// /// 仓库编号 /// public string WarehouseCode { get; set; } /// /// 执行设备编号 /// public string DeviceCode { get; set; } } public class WCSPalletizingDtlDto { /// /// 是否空置 /// public bool IsEmpty { get; set; } /// /// 层号 /// public int LayerNo { get; set; } /// /// 行数 /// public int RowCountQty { get; set; } /// /// 当前所有的物料号 /// public string MatCodeList { get; set; } /// /// 是否结束 /// public bool Finish { get; set; } /// /// 仓库编号 /// public string WarehouseCode { get; set; } /// /// 是否空置 /// public bool RowsIsEmpty { get; set; } /// /// 数量上限 /// public int QtyMaxCount { get; set; } /// /// 行号 /// public int RowNo { get; set; } /// /// 是否混合料行 /// public bool IsMixRow { get; set; } /// /// 任务Id /// public int CacheLineId { get; set; } /// /// 当前所有的物料号 /// public string RowsMatCodeList { get; set; } /// /// 是否结束 /// public bool RowsFinish { get; set; } /// /// 取货线体号 /// public string LineCode { get; set; } /// /// 创建时间 /// public DateTime? AddTime { get; set; } /// /// 编辑时间 /// public DateTime? EditTime { get; set; } /// /// 任务Id /// public int TaskId { get; set; } /// /// 是否空置 /// public bool ColsIsEmpty { get; set; } /// /// 坐标号 /// public string XYNo { get; set; } /// /// 所属设备号 /// public string DevCode { get; set; } /// /// 物料编码 /// public string MatCode { get; set; } /// /// 正反面 /// public int SideNum { get; set; } /// /// 工字轮类型 /// public string SpoolType { get; set; } /// /// 是否结束 /// public bool ColsFinish { get; set; } } }