namespace HH.WCS.Mobox3.RiDong.dto; /// /// 组盘明细数据 /// public class SetDiskDetailDto { /// /// 类型 /// public string type { get; set; } /// /// 规格(物料编码) /// public string specifications { get; set; } /// /// 颜色 /// public string color { get; set; } /// /// OD(来源单号) /// public string od { get; set; } /// /// LOT(批次号) /// public string lot { get; set; } /// /// 客户 /// public string customer { get; set; } /// /// 数量 /// public float number { get; set; } /// /// 物料名称 /// public string itemname { get; set; } /// /// 物料规格 /// public string itemspec { get; set; } }