调整出库操作
This commit is contained in:
@@ -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);
|
||||
/// 查询实体集合
|
||||
|
||||
@@ -20,5 +20,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
|
||||
/// 删除实体集合
|
||||
Task<bool> DeleteEntityList(List<int> ids, bool isTransaction = true);
|
||||
//获取实体
|
||||
Task<OutStockTask> Get(int id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user