出库任务合并和作废

This commit is contained in:
18942506660
2023-10-28 14:53:00 +08:00
parent 914654f749
commit 8abdbd9746
11 changed files with 312 additions and 5 deletions

View File

@@ -13,5 +13,9 @@ namespace WMS.Web.Domain.Infrastructure
Task<OutStock> Add(OutStock entity, bool isTransaction = true);
// 获取列表
Task<(List<OutStockQueryInfoResponse> list, int total)> GetListAsync(OutStockQueryRequest dto);
/// 查询实体集合
Task<List<OutStock>> GetEntityList(List<int> ids);
/// 修改实体集合
Task<bool> EditEntityList(List<OutStock> entitys, bool isTransaction = true);
}
}