|  |  | 
 |  |  |     /** | 
 |  |  |      * 获取用户列表 | 
 |  |  |      */ | 
 |  |  |     @ApiOperation("获取用户列表") | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:list')") | 
 |  |  |     @GetMapping("/list") | 
 |  |  |     public TableDataInfo list(SysUser user) { | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据用户编号获取详细信息 | 
 |  |  |      */ | 
 |  |  |     @ApiOperation("根据用户编号获取详细信息") | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:query')") | 
 |  |  |     @GetMapping(value = {"/", "/{userId}"}) | 
 |  |  |     public AjaxResult getInfo(@PathVariable(value = "userId", required = false) String userId) { | 
 |  |  | 
 |  |  |     /** | 
 |  |  |      * 修改用户 | 
 |  |  |      */ | 
 |  |  |  | 
 |  |  |     @ApiOperation("修改用户") | 
 |  |  |     @PreAuthorize("@ss.hasPermi('system:user:edit')") | 
 |  |  |     @Log(title = "用户管理", businessType = BusinessType.UPDATE) | 
 |  |  |     @PutMapping |