From 5fb5605185db191834d2e98bc9f6e7bfa7af47c8 Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期一, 25 三月 2024 18:10:09 +0800 Subject: [PATCH] 事前事后报备增加筛选条件 --- ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java b/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java index d2509bd..1b5fdb9 100644 --- a/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java +++ b/ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java @@ -32,7 +32,7 @@ /** * 鏌ヨ鑰冩牳璁″垎鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('platform:score:list')") +// @PreAuthorize("@ss.hasPermi('platform:score:list')") @GetMapping("/list") public TableDataInfo list(TExamineScore tExamineScore) { @@ -44,7 +44,7 @@ /** * 瀵煎嚭鑰冩牳璁″垎鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('platform:score:export')") +// @PreAuthorize("@ss.hasPermi('platform:score:export')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, TExamineScore tExamineScore) @@ -57,7 +57,7 @@ /** * 鑾峰彇鑰冩牳璁″垎璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('platform:score:query')") +// @PreAuthorize("@ss.hasPermi('platform:score:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { @@ -67,7 +67,7 @@ /** * 鏂板鑰冩牳璁″垎 */ - @PreAuthorize("@ss.hasPermi('platform:score:add')") +// @PreAuthorize("@ss.hasPermi('platform:score:add')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody TExamineScore tExamineScore) @@ -78,7 +78,7 @@ /** * 淇敼鑰冩牳璁″垎 */ - @PreAuthorize("@ss.hasPermi('platform:score:edit')") +// @PreAuthorize("@ss.hasPermi('platform:score:edit')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody TExamineScore tExamineScore) @@ -89,7 +89,7 @@ /** * 鍒犻櫎鑰冩牳璁″垎 */ - @PreAuthorize("@ss.hasPermi('platform:score:remove')") +// @PreAuthorize("@ss.hasPermi('platform:score:remove')") @Log(title = "鑰冩牳璁″垎", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) -- Gitblit v1.8.0