From f284c5ef6a1aa6e9ba5d4e94e4b2abe83b6ea18c Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期三, 31 七月 2024 14:54:44 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ycl-server/src/main/java/com/ycl/platform/controller/CheckScoreController.java | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/CheckScoreController.java b/ycl-server/src/main/java/com/ycl/platform/controller/CheckScoreController.java index bdcb0ec..4b2e20e 100644 --- a/ycl-server/src/main/java/com/ycl/platform/controller/CheckScoreController.java +++ b/ycl-server/src/main/java/com/ycl/platform/controller/CheckScoreController.java @@ -8,11 +8,9 @@ import com.ycl.system.AjaxResult; import com.ycl.system.controller.BaseController; import com.ycl.system.page.TableDataInfo; -import com.ycl.utils.poi.ExcelUtil; import enumeration.BusinessType; import jakarta.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import java.io.IOException; @@ -44,6 +42,17 @@ } /** + * 鏌ヨ鑰冩牳绉垎鎶樼嚎鍥� + */ +// @PreAuthorize("@ss.hasPermi('check:score:chart')") + @GetMapping("/chart") + public AjaxResult selectCheckScoreChart(CheckScore checkScore) + { + Map<Long, List<CheckScore>> deptMap = checkScoreService.selectCheckScoreChart(checkScore); + return success(deptMap); + } + + /** * 鍖哄幙璇︽儏鍒楄〃 */ // @PreAuthorize("@ss.hasPermi('check:score:list')") -- Gitblit v1.8.0