根据出库任务单获取出库任务信息
This commit is contained in:
@@ -17,10 +17,13 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
Task<List<OutStockTask>> GetEntityList(List<int> ids);
|
||||
/// 修改实体集合
|
||||
Task<bool> EditEntityList(List<OutStockTask> entitys, bool isTransaction = true);
|
||||
|
||||
//编辑
|
||||
Task<OutStockTask> Edit(OutStockTask entity, bool isTransaction = true);
|
||||
/// 删除实体集合
|
||||
Task<bool> DeleteEntityList(List<int> ids, bool isTransaction = true);
|
||||
//获取实体
|
||||
Task<OutStockTask> Get(int id);
|
||||
//根据订单号获取订单信息
|
||||
Task<GetOutStockTaskByNoResponse> GetOutStockTaskByNo(string billNo);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user