using System; using System.Collections.Generic; namespace WMS.BZModels.Dto.FJ.WCSPalletizingDtos { public partial class WCSPalletizingrowDto { /// /// Id /// public string Id { get; set; } /// /// 码垛层信息表Id /// public string PalletizingLayerId { get; set; } /// /// 是否空置 /// public bool IsEmpty { 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 MatCodeList { get; set; } /// /// 是否结束 /// public bool Finish { get; set; } /// /// 取货线体号 /// public string LineCode { get; set; } /// /// 创建时间 /// public DateTime? AddTime { get; set; } /// /// 编辑时间 /// public DateTime? EditTime { get; set; } /// /// 仓库编号 /// public string WarehouseCode { get; set; } } }