From ef7506eb3af65ad2c054ed4e44b24fc297790a61 Mon Sep 17 00:00:00 2001
From: 无关风月 <443237572@qq.com>
Date: 星期五, 28 二月 2025 11:51:46 +0800
Subject: [PATCH] 权限

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TItemTypeController.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TItemTypeController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TItemTypeController.java
index 648c2e8..96e1b44 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TItemTypeController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TItemTypeController.java
@@ -44,7 +44,7 @@
     /**
      * 获取维修物品分类管理列表
      */
-    @PreAuthorize("@ss.hasPermi('system:itemType:list')")
+    @PreAuthorize("@ss.hasPermi('houseManage:class_list')")
     @ApiOperation(value = "获取维修物品分类分页列表")
     @PostMapping(value = "/pageList")
     public R<PageInfo<TItemType>> pageList(@RequestBody TItemTypeQuery query) {
@@ -63,7 +63,7 @@
     /**
      * 添加维修物品分类管理
      */
-    @PreAuthorize("@ss.hasPermi('system:itemType:add')")
+    @PreAuthorize("@ss.hasPermi('houseManage:class:add')")
     @Log(title = "维修物品分类信息-新增维修物品分类", businessType = BusinessType.INSERT)
     @ApiOperation(value = "添加维修物品分类")
     @PostMapping(value = "/add")
@@ -77,7 +77,7 @@
     /**
      * 修改维修物品分类
      */
-    @PreAuthorize("@ss.hasPermi('system:itemType:update')")
+    @PreAuthorize("@ss.hasPermi('houseManage:class:edit')")
     @Log(title = "维修物品分类信息-修改维修物品分类", businessType = BusinessType.UPDATE)
     @ApiOperation(value = "修改维修物品分类")
     @PostMapping(value = "/update")
@@ -91,7 +91,7 @@
     /**
      * 查看维修物品分类详情
      */
-    @PreAuthorize("@ss.hasPermi('system:itemType:detail')")
+    @PreAuthorize("@ss.hasPermi('houseManage:class:edit')")
     @ApiOperation(value = "查看维修物品分类详情")
     @GetMapping(value = "/getDetailById")
     public R<TItemType> getDetailById(@RequestParam String id) {
@@ -101,7 +101,7 @@
     /**
      * 删除维修物品分类
      */
-    @PreAuthorize("@ss.hasPermi('system:itemType:delete')")
+    @PreAuthorize("@ss.hasPermi('houseManage:class:delete')")
     @Log(title = "维修物品分类信息-删除维修物品分类", businessType = BusinessType.DELETE)
     @ApiOperation(value = "删除维修物品分类")
     @DeleteMapping(value = "/deleteById")
@@ -116,7 +116,7 @@
     /**
      * 批量删除维修物品分类
      */
-    @PreAuthorize("@ss.hasPermi('system:itemType:delete')")
+    @PreAuthorize("@ss.hasPermi('houseManage:class:delete')")
     @Log(title = "维修物品分类信息-删除维修物品分类", businessType = BusinessType.DELETE)
     @ApiOperation(value = "批量删除维修物品分类")
     @DeleteMapping(value = "/deleteByIds")

--
Gitblit v1.7.1