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, "全所统计"); }