出库任务合并和作废
This commit is contained in:
@@ -13,5 +13,12 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
Task<OutStockTask> Add(OutStockTask entity, bool isTransaction = true);
|
||||
// 获取列表
|
||||
Task<(List<OutStockTaskQueryInfoResponse> list, int total)> GetListAsync(OutStockTaskQueryRequest dto);
|
||||
/// 查询实体集合
|
||||
Task<List<OutStockTask>> GetEntityList(List<int> ids);
|
||||
/// 修改实体集合
|
||||
Task<bool> EditEntityList(List<OutStockTask> entitys, bool isTransaction = true);
|
||||
|
||||
/// 删除实体集合
|
||||
Task<bool> DeleteEntityList(List<int> ids, bool isTransaction = true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user