From 13a969a17d15f620360a72c00ce72652682c4db8 Mon Sep 17 00:00:00 2001 From: lijiarao Date: Fri, 2 Aug 2024 12:03:04 +0800 Subject: [PATCH] =?UTF-8?q?fix=2087942=20=E5=85=A8=E6=89=80=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1--=E5=AF=BC=E5=87=BA--=E8=A1=A8=E5=A4=B4=E5=92=8Csheet?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E9=9C=80=E8=A6=81=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/AllProjectStatisticsController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/statistics/controller/AllProjectStatisticsController.java b/jero-boot-incoming-payment/src/main/java/com/jero/statistics/controller/AllProjectStatisticsController.java index 467e956c..77042f7e 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/statistics/controller/AllProjectStatisticsController.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/statistics/controller/AllProjectStatisticsController.java @@ -173,12 +173,12 @@ public class AllProjectStatisticsController { } /** - * 所领导统计导出 + * 全所统计导出 */ @RequiresPermissions("wholeInstituteStatistics:export") - @AutoLog(value = "全所统计导出-导出统计") + @AutoLog(value = "全所统计-导出统计") @GetMapping(value = "/statistics/excel") - @ApiOperation(value = "全所统计导出-导出统计", notes = "全所统计导出-导出统计") + @ApiOperation(value = "全所统计-导出统计", notes = "全所统计导出-导出统计") public ModelAndView excel(AllProjectStatisticsSearch allProjectStatisticsSearch, @RequestParam(name = "selections", required = false) String selections) { allProjectStatisticsSearch.setProjectName(oConvertUtils.replaceAllPercent(allProjectStatisticsSearch.getProjectName())); @@ -215,7 +215,7 @@ public class AllProjectStatisticsController { } } - return AmountUtil.exportListXls(pageList, AllProjectStatistics.class, "所领导统计"); + return AmountUtil.exportListXls(pageList, AllProjectStatistics.class, "全所统计"); }