调整出库操作

This commit is contained in:
18942506660
2023-11-02 17:44:04 +08:00
parent 0fe1d17de4
commit bcb2cda25c
13 changed files with 131 additions and 73 deletions

View File

@@ -11,6 +11,10 @@ namespace WMS.Web.Domain.Infrastructure
{
// 新增
Task<OutStock> Add(OutStock entity, bool isTransaction = true);
//编辑
Task<OutStock> Edit(OutStock entity, bool isTransaction = true);
//根据任务单Id搜索
Task<OutStock> GetByTaskId(int taskId);
// 获取列表
Task<(List<OutStockQueryInfoResponse> list, int total)> GetListAsync(OutStockQueryRequest dto);
/// 查询实体集合