namespace ZR.Model.MES.wms.Dto { /// /// 物料记录表查询对象 /// public class WmMaterialQueryDto : PagerInfo { public string Id { get; set; } public string Partnumber { get; set; } public string U8InventoryCode { get; set; } public string BlankNum { get; set; } public string Unit { get; set; } public string ProductName { get; set; } public string Color { get; set; } public string Specification { get; set; } public string Description { get; set; } public string Version { get; set; } public string Remarks { get; set; } public int? Sort { get; set; } public string Search1 { get; set; } public string Search2 { get; set; } public int? Type { get; set; } public int? Status { get; set; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } } /// /// 带库存记录的物料库存表 /// public class WmMaterialQuery_stockQuantityDto : WmMaterialQueryDto { /// /// 库存数量 /// public int stockQuantity { get; set; } /// /// 需要出货数量 /// public int requireOutNum { get; set; } } /// /// 出货单中物料信息打印 /// public class WmMaterialQuery_print { /// /// 物料号 /// public string Partnumber { get; set; } /// /// 产品名称 /// public string ProductName { get; set; } /// /// 需求数量 /// public int RequireOutNum { get; set; } /// /// 需求箱数 /// public int Require_pack_num { get; set; } //库存零件数 public int ItemNum { get; set; } //库存箱数 public int PackageNum { get; set; } } /// /// 带需要出货数量的物料库存表 /// public class WmMaterialQuery_stockQuantityDto2 : WmMaterialQueryDto { /// /// 需要出货数量 /// public int requireOutNum { get; set; } } /// /// 物料记录表输入输出对象 /// public class WmMaterialDto { public string Id { get; set; } public string Partnumber { get; set; } public string U8InventoryCode { get; set; } public string BlankNum { get; set; } public string Unit { get; set; } public string ProductName { get; set; } public string Color { get; set; } public string Specification { get; set; } public string Description { get; set; } public string Version { get; set; } public string Remarks { get; set; } public int? Sort { get; set; } public string Search1 { get; set; } public string Search2 { get; set; } public int? Type { get; set; } public int? Status { get; set; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } } /// /// 物料下拉查询表 /// public class WmMaterialSelectOptions { public string Key { get; set; } public string Label { get; set; } public string Value { get; set; } } }