using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } } }