From b45af0eb262474fefd3e2a756f052c683a43a077 Mon Sep 17 00:00:00 2001 From: bluejay <253316343@qq.com> Date: 星期一, 14 四月 2025 16:35:09 +0800 Subject: [PATCH] 钣金权限调整 --- aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java | 11 ++++++----- 1 files changed, 6 insertions(+), 5 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 2bae436..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 @@ -38,6 +38,7 @@ /** * 鏌ヨ閽i噾璁″垝涓存椂琛ㄥ垪琛� */ + @RequiresPermissions("apsPlatePlan:import") @GetMapping("/list") public TableDataInfo list(ApsPlatePlanTemp apsPlatePlanTemp) { @@ -48,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) @@ -61,7 +62,7 @@ /** * 鑾峰彇閽i噾璁″垝涓存椂琛ㄨ缁嗕俊鎭� */ - @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:query") + @RequiresPermissions("apsPlatePlanTemp:query") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") String id) { @@ -71,7 +72,7 @@ /** * 鏂板閽i噾璁″垝涓存椂琛� */ - @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:add") + @RequiresPermissions("apsPlatePlanTemp:add") @Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp) @@ -82,7 +83,7 @@ /** * 淇敼閽i噾璁″垝涓存椂琛� */ - @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:edit") + @RequiresPermissions("apsPlatePlanTemp:edit") @Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp) @@ -93,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