zhangnaisong
2023-07-25 8775f345586ef49277730af758130cfc938ad9c9
ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/SysUserController.java
@@ -61,6 +61,7 @@
    /**
     * 获取用户列表
     */
    @ApiOperation("获取用户列表")
    @PreAuthorize("@ss.hasPermi('system:user:list')")
    @GetMapping("/list")
    public TableDataInfo list(SysUser user) {
@@ -98,6 +99,7 @@
    /**
     * 根据用户编号获取详细信息
     */
    @ApiOperation("根据用户编号获取详细信息")
    @PreAuthorize("@ss.hasPermi('system:user:query')")
    @GetMapping(value = {"/", "/{userId}"})
    public AjaxResult getInfo(@PathVariable(value = "userId", required = false) String userId) {