diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UConfigController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UConfigController.java index e9cc12c..9eaf9de 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UConfigController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UConfigController.java @@ -41,7 +41,7 @@ public class UConfigController extends BaseController return getDataTable(list); } - @Log(title = "参数管理", businessType = BusinessType.EXPORT) + // @Log(title = "参数管理", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:config:export") @PostMapping("/export") public void export(HttpServletResponse response, UConfig config) @@ -73,7 +73,7 @@ public class UConfigController extends BaseController * 新增参数配置 */ @RequiresPermissions("Utem:config:add") - @Log(title = "参数管理", businessType = BusinessType.INSERT) + // @Log(title = "参数管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody UConfig config) { @@ -89,7 +89,7 @@ public class UConfigController extends BaseController * 修改参数配置 */ @RequiresPermissions("Utem:config:edit") - @Log(title = "参数管理", businessType = BusinessType.UPDATE) + // @Log(title = "参数管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody UConfig config) { @@ -105,7 +105,7 @@ public class UConfigController extends BaseController * 删除参数配置 */ @RequiresPermissions("Utem:config:remove") - @Log(title = "参数管理", businessType = BusinessType.DELETE) + // @Log(title = "参数管理", businessType = BusinessType.DELETE) @DeleteMapping("/{configIds}") public AjaxResult remove(@PathVariable Long[] configIds) { @@ -117,7 +117,7 @@ public class UConfigController extends BaseController * 刷新参数缓存 */ @RequiresPermissions("Utem:config:remove") - @Log(title = "参数管理", businessType = BusinessType.CLEAN) + // @Log(title = "参数管理", businessType = BusinessType.CLEAN) @DeleteMapping("/refreshCache") public AjaxResult refreshCache() { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDeptController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDeptController.java index 1364fa3..ca8237d 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDeptController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDeptController.java @@ -68,7 +68,7 @@ public class UDeptController extends BaseController * 新增部门 */ @RequiresPermissions("Utem:dept:add") - @Log(title = "部门管理", businessType = BusinessType.INSERT) + // @Log(title = "部门管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody UDept dept) { @@ -84,7 +84,7 @@ public class UDeptController extends BaseController * 修改部门 */ @RequiresPermissions("Utem:dept:edit") - @Log(title = "部门管理", businessType = BusinessType.UPDATE) + // @Log(title = "部门管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody UDept dept) { @@ -110,7 +110,7 @@ public class UDeptController extends BaseController * 删除部门 */ @RequiresPermissions("Utem:dept:remove") - @Log(title = "部门管理", businessType = BusinessType.DELETE) + // @Log(title = "部门管理", businessType = BusinessType.DELETE) @DeleteMapping("/{deptId}") public AjaxResult remove(@PathVariable Long deptId) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictDataController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictDataController.java index eeaeeb6..4b64885 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictDataController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictDataController.java @@ -44,7 +44,7 @@ public class UDictDataController extends BaseController return getDataTable(list); } - @Log(title = "字典数据", businessType = BusinessType.EXPORT) + // @Log(title = "字典数据", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:dict:export") @PostMapping("/export") public void export(HttpServletResponse response, UDictData dictData) @@ -82,7 +82,7 @@ public class UDictDataController extends BaseController * 新增字典类型 */ @RequiresPermissions("Utem:dict:add") - @Log(title = "字典数据", businessType = BusinessType.INSERT) + // @Log(title = "字典数据", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody UDictData dict) { @@ -94,7 +94,7 @@ public class UDictDataController extends BaseController * 修改保存字典类型 */ @RequiresPermissions("Utem:dict:edit") - @Log(title = "字典数据", businessType = BusinessType.UPDATE) + // @Log(title = "字典数据", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody UDictData dict) { @@ -106,7 +106,7 @@ public class UDictDataController extends BaseController * 删除字典类型 */ @RequiresPermissions("Utem:dict:remove") - @Log(title = "字典类型", businessType = BusinessType.DELETE) + // @Log(title = "字典类型", businessType = BusinessType.DELETE) @DeleteMapping("/{dictCodes}") public AjaxResult remove(@PathVariable Long[] dictCodes) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictTypeController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictTypeController.java index 87a5580..8489e04 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictTypeController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UDictTypeController.java @@ -38,7 +38,7 @@ public class UDictTypeController extends BaseController return getDataTable(list); } - @Log(title = "字典类型", businessType = BusinessType.EXPORT) + // @Log(title = "字典类型", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:dict:export") @PostMapping("/export") public void export(HttpServletResponse response, UDictType dictType) @@ -62,7 +62,7 @@ public class UDictTypeController extends BaseController * 新增字典类型 */ @RequiresPermissions("Utem:dict:add") - @Log(title = "字典类型", businessType = BusinessType.INSERT) + // @Log(title = "字典类型", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody UDictType dict) { @@ -78,7 +78,7 @@ public class UDictTypeController extends BaseController * 修改字典类型 */ @RequiresPermissions("Utem:dict:edit") - @Log(title = "字典类型", businessType = BusinessType.UPDATE) + // @Log(title = "字典类型", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody UDictType dict) { @@ -94,7 +94,7 @@ public class UDictTypeController extends BaseController * 删除字典类型 */ @RequiresPermissions("Utem:dict:remove") - @Log(title = "字典类型", businessType = BusinessType.DELETE) + // @Log(title = "字典类型", businessType = BusinessType.DELETE) @DeleteMapping("/{dictIds}") public AjaxResult remove(@PathVariable Long[] dictIds) { @@ -106,7 +106,7 @@ public class UDictTypeController extends BaseController * 刷新字典缓存 */ @RequiresPermissions("Utem:dict:remove") - @Log(title = "字典类型", businessType = BusinessType.CLEAN) + // @Log(title = "字典类型", businessType = BusinessType.CLEAN) @DeleteMapping("/refreshCache") public AjaxResult refreshCache() { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UKycController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UKycController.java index d67d183..bc101f4 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UKycController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UKycController.java @@ -43,7 +43,7 @@ public class UKycController extends BaseController { } // @RequiresPermissions("Utem:kyc:add") - @Log(title = "User Management", businessType = BusinessType.INSERT) + // @Log(title = "User Management", businessType = BusinessType.INSERT) @PostMapping("/verify") public AjaxResult add(@Validated @RequestBody UKyc uKyc) { uKyc.setStatus(KycStatusEnum.PENDING.getCode()); @@ -51,7 +51,7 @@ public class UKycController extends BaseController { } // @RequiresPermissions("Utem:kyc:edit") - @Log(title = "User Management", businessType = BusinessType.UPDATE) + // @Log(title = "User Management", businessType = BusinessType.UPDATE) @PutMapping("/verify") public AjaxResult edit(@Validated @RequestBody UKyc uKyc) { uKyc.setStatus(KycStatusEnum.PENDING.getCode()); diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/ULogininforController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/ULogininforController.java index 74dcc1c..2c41fa8 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/ULogininforController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/ULogininforController.java @@ -42,7 +42,7 @@ public class ULogininforController extends BaseController return getDataTable(list); } - @Log(title = "登录日志", businessType = BusinessType.EXPORT) + // @Log(title = "登录日志", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:logininfor:export") @PostMapping("/export") public void export(HttpServletResponse response, ULogininfor logininfor) @@ -53,7 +53,7 @@ public class ULogininforController extends BaseController } @RequiresPermissions("Utem:logininfor:remove") - @Log(title = "登录日志", businessType = BusinessType.DELETE) + // @Log(title = "登录日志", businessType = BusinessType.DELETE) @DeleteMapping("/{infoIds}") public AjaxResult remove(@PathVariable Long[] infoIds) { @@ -61,7 +61,7 @@ public class ULogininforController extends BaseController } @RequiresPermissions("Utem:logininfor:remove") - @Log(title = "登录日志", businessType = BusinessType.DELETE) + // @Log(title = "登录日志", businessType = BusinessType.DELETE) @DeleteMapping("/clean") public AjaxResult clean() { @@ -70,7 +70,7 @@ public class ULogininforController extends BaseController } @RequiresPermissions("Utem:logininfor:unlock") - @Log(title = "账户解锁", businessType = BusinessType.OTHER) + // @Log(title = "账户解锁", businessType = BusinessType.OTHER) @GetMapping("/unlock/{userName}") public AjaxResult unlock(@PathVariable("userName") String userName) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UMenuController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UMenuController.java index 140a5e0..c7609c6 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UMenuController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UMenuController.java @@ -92,7 +92,7 @@ public class UMenuController extends BaseController { * 新增菜单 */ @RequiresPermissions("Utem:menu:add") - @Log(title = "菜单管理", businessType = BusinessType.INSERT) + // @Log(title = "菜单管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody UMenu menu) { if (!menuService.checkMenuNameUnique(menu)) { @@ -108,7 +108,7 @@ public class UMenuController extends BaseController { * 修改菜单 */ @RequiresPermissions("Utem:menu:edit") - @Log(title = "菜单管理", businessType = BusinessType.UPDATE) + // @Log(title = "菜单管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody UMenu menu) { if (!menuService.checkMenuNameUnique(menu)) { @@ -126,7 +126,7 @@ public class UMenuController extends BaseController { * 删除菜单 */ @RequiresPermissions("Utem:menu:remove") - @Log(title = "菜单管理", businessType = BusinessType.DELETE) + // @Log(title = "菜单管理", businessType = BusinessType.DELETE) @DeleteMapping("/{menuId}") public AjaxResult remove(@PathVariable("menuId") Long menuId) { if (menuService.hasChildByMenuId(menuId)) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UOperlogController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UOperlogController.java index 4f1487f..f589645 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UOperlogController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UOperlogController.java @@ -37,7 +37,7 @@ public class UOperlogController extends BaseController return getDataTable(list); } - @Log(title = "操作日志", businessType = BusinessType.EXPORT) + // @Log(title = "操作日志", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:operlog:export") @PostMapping("/export") public void export(HttpServletResponse response, UOperLog operLog) @@ -47,7 +47,7 @@ public class UOperlogController extends BaseController util.exportExcel(response, list, "操作日志"); } - @Log(title = "操作日志", businessType = BusinessType.DELETE) + // @Log(title = "操作日志", businessType = BusinessType.DELETE) @RequiresPermissions("Utem:operlog:remove") @DeleteMapping("/{operIds}") public AjaxResult remove(@PathVariable Long[] operIds) @@ -56,7 +56,7 @@ public class UOperlogController extends BaseController } @RequiresPermissions("Utem:operlog:remove") - @Log(title = "操作日志", businessType = BusinessType.CLEAN) + // @Log(title = "操作日志", businessType = BusinessType.CLEAN) @DeleteMapping("/clean") public AjaxResult clean() { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UPostController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UPostController.java index 883c2fe..55cb86e 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UPostController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UPostController.java @@ -41,7 +41,7 @@ public class UPostController extends BaseController return getDataTable(list); } - @Log(title = "岗位管理", businessType = BusinessType.EXPORT) + // @Log(title = "岗位管理", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:post:export") @PostMapping("/export") public void export(HttpServletResponse response, UPost post) @@ -65,7 +65,7 @@ public class UPostController extends BaseController * 新增岗位 */ @RequiresPermissions("Utem:post:add") - @Log(title = "岗位管理", businessType = BusinessType.INSERT) + // @Log(title = "岗位管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody UPost post) { @@ -85,7 +85,7 @@ public class UPostController extends BaseController * 修改岗位 */ @RequiresPermissions("Utem:post:edit") - @Log(title = "岗位管理", businessType = BusinessType.UPDATE) + // @Log(title = "岗位管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody UPost post) { @@ -105,7 +105,7 @@ public class UPostController extends BaseController * 删除岗位 */ @RequiresPermissions("Utem:post:remove") - @Log(title = "岗位管理", businessType = BusinessType.DELETE) + // @Log(title = "岗位管理", businessType = BusinessType.DELETE) @DeleteMapping("/{postIds}") public AjaxResult remove(@PathVariable Long[] postIds) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UProfileController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UProfileController.java index 4abf56c..b5859da 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UProfileController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UProfileController.java @@ -57,7 +57,7 @@ public class UProfileController extends BaseController /** * 修改用户 */ - @Log(title = "个人信息", businessType = BusinessType.UPDATE) + // @Log(title = "个人信息", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult updateProfile(@RequestBody UUser user) { @@ -95,7 +95,7 @@ public class UProfileController extends BaseController /** * 重置密码 */ - @Log(title = "个人信息", businessType = BusinessType.UPDATE) + // @Log(title = "个人信息", businessType = BusinessType.UPDATE) @PutMapping("/updatePwd") public AjaxResult updatePwd(String oldPassword, String newPassword) { @@ -127,7 +127,7 @@ public class UProfileController extends BaseController /** * 头像上传 */ - @Log(title = "用户头像", businessType = BusinessType.UPDATE) + // @Log(title = "用户头像", businessType = BusinessType.UPDATE) @PostMapping("/avatar") public AjaxResult avatar(@RequestParam("avatarfile") MultipartFile file) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/URoleController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/URoleController.java index 24c8540..308182c 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/URoleController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/URoleController.java @@ -49,7 +49,7 @@ public class URoleController extends BaseController return getDataTable(list); } - @Log(title = "角色管理", businessType = BusinessType.EXPORT) + // @Log(title = "角色管理", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:role:export") @PostMapping("/export") public void export(HttpServletResponse response, URole role) @@ -74,7 +74,7 @@ public class URoleController extends BaseController * 新增角色 */ @RequiresPermissions("Utem:role:add") - @Log(title = "角色管理", businessType = BusinessType.INSERT) + // @Log(title = "角色管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody URole role) { @@ -95,7 +95,7 @@ public class URoleController extends BaseController * 修改保存角色 */ @RequiresPermissions("Utem:role:edit") - @Log(title = "角色管理", businessType = BusinessType.UPDATE) + // @Log(title = "角色管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody URole role) { @@ -117,7 +117,7 @@ public class URoleController extends BaseController * 修改保存数据权限 */ @RequiresPermissions("Utem:role:edit") - @Log(title = "角色管理", businessType = BusinessType.UPDATE) + // @Log(title = "角色管理", businessType = BusinessType.UPDATE) @PutMapping("/dataScope") public AjaxResult dataScope(@RequestBody URole role) { @@ -130,7 +130,7 @@ public class URoleController extends BaseController * 状态修改 */ @RequiresPermissions("Utem:role:edit") - @Log(title = "角色管理", businessType = BusinessType.UPDATE) + // @Log(title = "角色管理", businessType = BusinessType.UPDATE) @PutMapping("/changeStatus") public AjaxResult changeStatus(@RequestBody URole role) { @@ -144,7 +144,7 @@ public class URoleController extends BaseController * 删除角色 */ @RequiresPermissions("Utem:role:remove") - @Log(title = "角色管理", businessType = BusinessType.DELETE) + // @Log(title = "角色管理", businessType = BusinessType.DELETE) @DeleteMapping("/{roleIds}") public AjaxResult remove(@PathVariable Long[] roleIds) { @@ -188,7 +188,7 @@ public class URoleController extends BaseController * 取消授权用户 */ @RequiresPermissions("Utem:role:edit") - @Log(title = "角色管理", businessType = BusinessType.GRANT) + // @Log(title = "角色管理", businessType = BusinessType.GRANT) @PutMapping("/authUser/cancel") public AjaxResult cancelAuthUser(@RequestBody UUserRole userRole) { @@ -199,7 +199,7 @@ public class URoleController extends BaseController * 批量取消授权用户 */ @RequiresPermissions("Utem:role:edit") - @Log(title = "角色管理", businessType = BusinessType.GRANT) + // @Log(title = "角色管理", businessType = BusinessType.GRANT) @PutMapping("/authUser/cancelAll") public AjaxResult cancelAuthUserAll(Long roleId, Long[] userIds) { @@ -210,7 +210,7 @@ public class URoleController extends BaseController * 批量选择用户授权 */ @RequiresPermissions("Utem:role:edit") - @Log(title = "角色管理", businessType = BusinessType.GRANT) + // @Log(title = "角色管理", businessType = BusinessType.GRANT) @PutMapping("/authUser/selectAll") public AjaxResult selectAuthUserAll(Long roleId, Long[] userIds) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserController.java index af0b3a0..a283d82 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserController.java @@ -121,7 +121,7 @@ public class UUserController extends BaseController return getDataTable(list); } - @Log(title = "用户管理", businessType = BusinessType.EXPORT) + // @Log(title = "用户管理", businessType = BusinessType.EXPORT) @RequiresPermissions("Utem:user:export") @PostMapping("/export") public void export(HttpServletResponse response, UUser user) @@ -131,7 +131,7 @@ public class UUserController extends BaseController util.exportExcel(response, list, "用户数据"); } - @Log(title = "用户管理", businessType = BusinessType.IMPORT) + // @Log(title = "用户管理", businessType = BusinessType.IMPORT) @RequiresPermissions("Utem:user:import") @PostMapping("/importData") public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception @@ -267,7 +267,7 @@ public class UUserController extends BaseController * 新增用户 */ @RequiresPermissions("Utem:user:add") - @Log(title = "用户管理", businessType = BusinessType.INSERT) + // @Log(title = "用户管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody UUser user) { @@ -293,7 +293,7 @@ public class UUserController extends BaseController /** * 修改用户 */ - @Log(title = "用户管理", businessType = BusinessType.UPDATE) + // @Log(title = "用户管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody UUser user) { @@ -321,7 +321,7 @@ public class UUserController extends BaseController * 删除用户 */ @RequiresPermissions("Utem:user:remove") - @Log(title = "用户管理", businessType = BusinessType.DELETE) + // @Log(title = "用户管理", businessType = BusinessType.DELETE) @DeleteMapping("/{userIds}") public AjaxResult remove(@PathVariable Long[] userIds) { @@ -336,7 +336,7 @@ public class UUserController extends BaseController * 重置密码 */ @RequiresPermissions("Utem:user:edit") - @Log(title = "用户管理", businessType = BusinessType.UPDATE) + // @Log(title = "用户管理", businessType = BusinessType.UPDATE) @PutMapping("/resetPwd") public AjaxResult resetPwd(@RequestBody UUser user) { @@ -351,7 +351,7 @@ public class UUserController extends BaseController * 状态修改 */ @RequiresPermissions("Utem:user:edit") - @Log(title = "用户管理", businessType = BusinessType.UPDATE) + // @Log(title = "用户管理", businessType = BusinessType.UPDATE) @PutMapping("/changeStatus") public AjaxResult changeStatus(@RequestBody UUser user) { @@ -380,7 +380,7 @@ public class UUserController extends BaseController * 用户授权角色 */ @RequiresPermissions("Utem:user:edit") - @Log(title = "用户管理", businessType = BusinessType.GRANT) + // @Log(title = "用户管理", businessType = BusinessType.GRANT) @PutMapping("/authRole") public AjaxResult insertAuthRole(Long userId, Long[] roleIds) { diff --git a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserOnlineController.java b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserOnlineController.java index 87cb12b..a84e6c1 100644 --- a/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserOnlineController.java +++ b/wfc-modules/wfc-user/src/main/java/org/wfc/user/controller/UUserOnlineController.java @@ -70,7 +70,7 @@ public class UUserOnlineController extends BaseController * 强退用户 */ @RequiresPermissions("monitor:online:forceLogout") - @Log(title = "在线用户", businessType = BusinessType.FORCE) + // @Log(title = "在线用户", businessType = BusinessType.FORCE) @DeleteMapping("/{tokenId}") public AjaxResult forceLogout(@PathVariable String tokenId) {