namespace Tnb.WarehouseMgr.Entities.Dto { public class OutStockStrategyQuery { /// /// 仓库Id /// public string warehouse_id { get; set; } /// /// 载具Id /// public string carry_id { get; set; } /// /// 载具规格Id /// public string carrystd_id { get; set; } /// /// 物料Id /// public string material_id { get; set; } /// /// 批次 /// public string code_batch { get; set; } /// /// 业务类型s /// public int BllType { get; set; } public int Size { get; set; } /// /// 数量 /// public decimal qty { get; set; } /// /// 规格型号 /// public string? material_specification { get; set; } /// /// 箱号 /// public string? container_no { get; set; } } }