导出的接口优化

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

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