From 6b1dcfa0ce8610afe2894db21b5454ec2ea8bfc4 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期一, 01 四月 2024 10:46:43 +0800
Subject: [PATCH] 视频表改为设备表
---
ycl-server/src/main/java/com/ycl/platform/controller/TExamineScoreController.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 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 5e33e12..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
@@ -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