导出接口
This commit is contained in:
@@ -18,7 +18,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// </summary>
|
||||
/// <param name="dto"></param>
|
||||
/// <returns></returns>
|
||||
Task<ResultPagedList<BoxInventoryQueryResponse>> GetPagedList(BoxInventoryQueryRequest dto);
|
||||
Task<(List<BoxInventoryQueryResponse> list,int total)> GetPagedList(BoxInventoryQueryRequest dto);
|
||||
|
||||
/// <summary>
|
||||
/// 明细集合-根据箱号
|
||||
|
||||
@@ -18,7 +18,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// </summary>
|
||||
/// <param name="dto"></param>
|
||||
/// <returns></returns>
|
||||
Task<ResultPagedList<InStockQueryResponse>> GetPagedList(InStockQueryRequest dto);
|
||||
Task<(List<InStockQueryResponse> list,int total)> GetPagedList(InStockQueryRequest dto);
|
||||
|
||||
/// <summary>
|
||||
/// 添加
|
||||
|
||||
@@ -20,7 +20,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// </summary>
|
||||
/// <param name="dto"></param>
|
||||
/// <returns></returns>
|
||||
Task<ResultPagedList<InStockTaskQueryResponse>> GetPagedList(InStockTaskQueryRequest dto);
|
||||
Task<(List<InStockTaskQueryResponse> list, int total)> GetPagedList(InStockTaskQueryRequest dto);
|
||||
|
||||
/// <summary>
|
||||
/// 详情
|
||||
|
||||
@@ -18,7 +18,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// </summary>
|
||||
/// <param name="dto"></param>
|
||||
/// <returns></returns>
|
||||
Task<ResultPagedList<InventoryDetailsQueryResponse>> GetPagedList(InventoryDetailsQueryRequest dto);
|
||||
Task<(List<InventoryDetailsQueryResponse> list,int total)> GetPagedList(InventoryDetailsQueryRequest dto);
|
||||
|
||||
/// <summary>
|
||||
/// 批量添加
|
||||
|
||||
@@ -18,7 +18,7 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// </summary>
|
||||
/// <param name="dto"></param>
|
||||
/// <returns></returns>
|
||||
Task<ResultPagedList<InventoryInOutDetailsQueryResponse>> GetPagedList(InventoryInOutDetailsQueryRequest dto);
|
||||
Task<(List<InventoryInOutDetailsQueryResponse> list,int total)> GetPagedList(InventoryInOutDetailsQueryRequest dto);
|
||||
|
||||
/// <summary>
|
||||
/// 批量添加
|
||||
|
||||
@@ -45,5 +45,20 @@ namespace WMS.Web.Domain.Values
|
||||
/// </summary>
|
||||
[EnumRemark("盘点单")]
|
||||
TakeStock = 7,
|
||||
/// <summary>
|
||||
/// 即时库存明细
|
||||
/// </summary>
|
||||
[EnumRemark("即时库存明细")]
|
||||
InventoryDetails = 8,
|
||||
/// <summary>
|
||||
/// 物料收发明细
|
||||
/// </summary>
|
||||
[EnumRemark("物料收发明细")]
|
||||
InOrOutInventoryDetails = 9,
|
||||
/// <summary>
|
||||
/// 箱库存明细
|
||||
/// </summary>
|
||||
[EnumRemark("箱库存明细")]
|
||||
BoxInventoryDetails = 10,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user