1. 处理 Job 日志导出的 excel 名字错误的问题

This commit is contained in:
YunaiV
2021-03-10 01:32:11 +08:00
parent 0e28ab169c
commit 28d9ecee3b
2 changed files with 161 additions and 16 deletions

View File

@ -75,7 +75,7 @@ public class InfJobLogController {
List<InfJobLogDO> list = jobLogService.getJobLogList(exportReqVO);
// 导出 Excel
List<InfJobLogExcelVO> datas = InfJobLogConvert.INSTANCE.convertList02(list);
ExcelUtils.write(response, "定时任务.xls", "数据", InfJobLogExcelVO.class, datas);
ExcelUtils.write(response, "任务日志.xls", "数据", InfJobLogExcelVO.class, datas);
}
}