From db1be72e80a9532ceda5000d79c153eb859caa05 Mon Sep 17 00:00:00 2001
From: bluejay <253316343@qq.com>
Date: 星期一, 14 四月 2025 16:46:22 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev

---
 aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java b/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
index ed6c1b6..7ae97dd 100644
--- a/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
+++ b/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
@@ -29,7 +29,7 @@
  * @date 2025-04-08
  */
 @RestController
-@RequestMapping("/ApsPlatePlanTemp")
+@RequestMapping("/apsPlatePlanTemp")
 public class ApsPlatePlanTempController extends BaseController
 {
     @Autowired
@@ -38,11 +38,10 @@
     /**
      * 鏌ヨ閽i噾璁″垝涓存椂琛ㄥ垪琛�
      */
-    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:list")
+    @RequiresPermissions("apsPlatePlan:import")
     @GetMapping("/list")
     public TableDataInfo list(ApsPlatePlanTemp apsPlatePlanTemp)
     {
-        startPage();
         List<ApsPlatePlanTemp> list = apsPlatePlanTempService.selectApsPlatePlanTempList(apsPlatePlanTemp);
         return getDataTable(list);
     }
@@ -50,7 +49,7 @@
     /**
      * 瀵煎嚭閽i噾璁″垝涓存椂琛ㄥ垪琛�
      */
-    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:export")
+    @RequiresPermissions("apsPlatePlanTemp:export")
     @Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.EXPORT)
     @PostMapping("/export")
     public void export(HttpServletResponse response, ApsPlatePlanTemp apsPlatePlanTemp)
@@ -63,7 +62,7 @@
     /**
      * 鑾峰彇閽i噾璁″垝涓存椂琛ㄨ缁嗕俊鎭�
      */
-    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:query")
+    @RequiresPermissions("apsPlatePlanTemp:query")
     @GetMapping(value = "/{id}")
     public AjaxResult getInfo(@PathVariable("id") String id)
     {
@@ -73,7 +72,7 @@
     /**
      * 鏂板閽i噾璁″垝涓存椂琛�
      */
-    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:add")
+    @RequiresPermissions("apsPlatePlanTemp:add")
     @Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.INSERT)
     @PostMapping
     public AjaxResult add(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp)
@@ -84,7 +83,7 @@
     /**
      * 淇敼閽i噾璁″垝涓存椂琛�
      */
-    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:edit")
+    @RequiresPermissions("apsPlatePlanTemp:edit")
     @Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.UPDATE)
     @PutMapping
     public AjaxResult edit(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp)
@@ -95,7 +94,7 @@
     /**
      * 鍒犻櫎閽i噾璁″垝涓存椂琛�
      */
-    @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:remove")
+    @RequiresPermissions("apsPlatePlanTemp:remove")
     @Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.DELETE)
 	@DeleteMapping("/{ids}")
     public AjaxResult remove(@PathVariable String[] ids)

--
Gitblit v1.9.3