Merge branch 'master' of https://codeup.aliyun.com/62ce7bca487c500c27f70a79/OPS/WMS-Api
This commit is contained in:
@@ -16,6 +16,6 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
Task<bool> AddRange(List<ChangeBoxRecord> list, bool isTransaction = true);
|
||||
|
||||
// 获取列表
|
||||
Task<(List<ChangeBoxRecordQueryInfoResponse> list,int total)> GetListAsync(ChangeBoxRecordQueryRequest dto);
|
||||
Task<(List<ChangeBoxRecordQueryInfoResponse> list,int total)> GetListAsync(ChangeBoxRecordQueryRequest dto, int companyId = 0);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,13 +7,13 @@ using WMS.Web.Domain.Entitys;
|
||||
|
||||
namespace WMS.Web.Domain.Infrastructure
|
||||
{
|
||||
public interface IMoveBoxRecordRepositories
|
||||
public interface IMoveBoxRecordRepositories
|
||||
{
|
||||
// 新增
|
||||
Task<MoveBoxRecord> Add(MoveBoxRecord entity, bool isTransaction = true);
|
||||
/// 批量添加
|
||||
Task<bool> AddRange(List<MoveBoxRecord> entitys, bool isTransaction = true);
|
||||
// 获取列表
|
||||
Task<(List<MoveBoxRecordQueryInfoResponse> list, int total)> GetListAsync(MoveBoxRecordQueryRequest dto);
|
||||
Task<(List<MoveBoxRecordQueryInfoResponse> list, int total)> GetListAsync(MoveBoxRecordQueryRequest dto, int companyId = 0);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
//根据任务单Id搜索
|
||||
Task<OutStock> GetByTaskId(int taskId);
|
||||
// 获取列表
|
||||
Task<(List<OutStockQueryInfoResponse> list, int total)> GetListAsync(OutStockQueryRequest dto);
|
||||
Task<(List<OutStockQueryInfoResponse> list, int total)> GetListAsync(OutStockQueryRequest dto, int companyId = 0);
|
||||
/// 查询实体集合
|
||||
Task<List<OutStock>> GetEntityList(List<int> ids);
|
||||
/// 修改实体集合
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// <returns></returns>
|
||||
Task<bool> AddRange(List<OutStockTask> entitys, bool isTransaction = true);
|
||||
// 获取列表
|
||||
Task<(List<OutStockTaskQueryInfoResponse> list, int total)> GetListAsync(OutStockTaskQueryRequest dto);
|
||||
Task<(List<OutStockTaskQueryInfoResponse> list, int total)> GetListAsync(OutStockTaskQueryRequest dto, int companyId = 0);
|
||||
/// 查询实体集合
|
||||
Task<List<OutStockTask>> GetEntityList(List<int> ids);
|
||||
/// <summary>
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
//编辑
|
||||
Task<TakeStock> Edit(TakeStock entity, bool isTransaction = true);
|
||||
// 获取列表
|
||||
Task<(List<TakeStockQueryInfoResponse> list, int total)> GetListAsync(TakeStockQueryRequest dto);
|
||||
Task<(List<TakeStockQueryInfoResponse> list, int total)> GetListAsync(TakeStockQueryRequest dto, int companyId = 0);
|
||||
/// 查询实体集合
|
||||
Task<List<TakeStock>> GetEntityList(List<int> ids);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user