using SqlSugar; 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; } public string Region_id { get; set; } // 排除有任务的通道 public bool AvoidBusyPassage { get; set; } = false; // 是否过滤载具占用状态 public bool filter_carry_status { get; set; } = true; // 策略编号 public string PolicyCode { get; set; } /// /// 过滤质检结果 /// public List qcres_list { get; set; } //public ISqlSugarClient dbConn { get; set; } = null; } }