guarantee-lsq 1 год назад
Родитель
Сommit
67acd2082d

+ 2 - 2
platform-rest/src/main/java/com/platform/rest/controller/preparation/PreparationController.java

@@ -227,7 +227,7 @@ public class PreparationController {
   @SysLog("筹建报表统计导出")
   public void getAllPreparationReportExport(HttpServletResponse response,PreparationDTO dto, @RequestParam(required = false) Integer year, @RequestParam(required = false) LocalDate startMonth, @RequestParam(required = false) LocalDate endMonth) {
     List<AllPreparationReportVO> list = preparationService.getAllPreparationReport(dto, year, startMonth, endMonth);
-    ExcelUtil.exportResponseDict(response, AllPreparationReportVO.class, BeanConverterUtil.copyListProperties(list, AllPreparationReportVO.class), "建报表统计导出");
+    ExcelUtil.exportResponseDict(response, AllPreparationReportVO.class, BeanConverterUtil.copyListProperties(list, AllPreparationReportVO.class), "建筑物报表统计导出");
   }
 
   @GetMapping("/getPreparationDetailReport/export")
@@ -254,7 +254,7 @@ public class PreparationController {
     preparationVO.setFee(totalFee);
     preparationVO.setId("费用汇总");
     preparationVOS.add(preparationVO);
-    ExcelUtil.exportResponseDict(response, ExportPreparationVO.class, BeanConverterUtil.copyListProperties(preparationVOS, ExportPreparationVO.class), "建报表统计导出");
+    ExcelUtil.exportResponseDict(response, ExportPreparationVO.class, BeanConverterUtil.copyListProperties(preparationVOS, ExportPreparationVO.class), "建筑物报表统计导出");
   }