盘盈盘亏同步
This commit is contained in:
@@ -11,7 +11,18 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
{
|
||||
// 新增
|
||||
Task<TakeStock> Add(TakeStock entity, bool isTransaction = true);
|
||||
/// <summary>
|
||||
/// 批量添加
|
||||
/// </summary>
|
||||
/// <param name="entitys"></param>
|
||||
/// <param name="isTransaction"></param>
|
||||
/// <returns></returns>
|
||||
Task<bool> AddRange(List<TakeStock> entitys, bool isTransaction = true);
|
||||
//编辑
|
||||
Task<TakeStock> Edit(TakeStock entity, bool isTransaction = true);
|
||||
// 获取列表
|
||||
Task<(List<TakeStockQueryInfoResponse> list, int total)> GetListAsync(TakeStockQueryRequest dto);
|
||||
/// 查询实体集合
|
||||
Task<List<TakeStock>> GetEntityList(List<int> ids);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user