Min 9 月之前
父节点
当前提交
e40205abbe

+ 2 - 1
fhKeeper/formulahousekeeper/management-platform/src/main/java/com/management/platform/controller/ReportLogController.java

@@ -179,7 +179,8 @@ public class ReportLogController {
             item.add(String.valueOf(df1.format(reportLog.getOperateDate())));
             dataList.add(item);
         }
-        String resp = ExcelUtil.exportGeneralExcelByTitleAndList("日报审核记录", dataList, path);
+        String fileName = "日报审核记录_"+System.currentTimeMillis();
+        String resp = ExcelUtil.exportGeneralExcelByTitleAndList(fileName, dataList, path);
         msg.setData(resp);
         return msg;
     }