导出接口

This commit is contained in:
tongfei
2023-11-15 15:02:19 +08:00
parent 9840fb93fb
commit 2cbc496e1f
17 changed files with 327 additions and 64 deletions

View File

@@ -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>
/// 明细集合-根据箱号

View File

@@ -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>
/// 添加

View File

@@ -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>
/// 详情

View File

@@ -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>
/// 批量添加

View File

@@ -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>
/// 批量添加

View File

@@ -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,
}
}