导出的接口优化

This commit is contained in:
tongfei
2023-11-30 13:41:54 +08:00
parent 5771505787
commit 312007eed3
4 changed files with 6 additions and 6 deletions

View File

@@ -94,7 +94,7 @@ namespace WMS.Web.Api.Controllers
Task.Run(async () =>
{
await _exportExcelService.ExportList<InStockQueryResponse, InStockQueryRequest>(dto, fileName, loginInfo.UserInfo.StaffId, loginInfo.UserInfo.CompanyId, FileDownLoadOrderType.OutStock);
await _exportExcelService.ExportList<InStockQueryResponse, InStockQueryRequest>(dto, fileName, loginInfo.UserInfo.StaffId, loginInfo.UserInfo.CompanyId, FileDownLoadOrderType.InStock);
});
return Task.FromResult(Result<string>.ReSuccess(res));