|  |  | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("员工权限下发") | 
 |  |  |     @GetMapping("/roleAuth/{id}") | 
 |  |  |     @RequiresPermissions("business:empower:create") | 
 |  |  |     public ApiResponse roleAuthById(@PathVariable Integer id) { | 
 |  |  |         memberService.roleAuthById(id); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("根据ID修改") | 
 |  |  |     @PostMapping("/updateById") | 
 |  |  |     @RequiresPermissions("business:member:update") | 
 |  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * | 
 |  |  |      * 分页查询内部人员信息 | 
 |  |  | 
 |  |  |         return ApiResponse.success("同步成功"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("测试人员冻结") | 
 |  |  |     @PostMapping("/testFreeFz") | 
 |  |  |     public ApiResponse testFreeFz() { | 
 |  |  |         memberService.memberFreeze(); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |