|
@@ -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), "建筑物报表统计导出");
|
|
|
}
|
|
|
|
|
|
|