修改错误日志权限

This commit is contained in:
wuchunlei
2024-09-14 16:14:48 +08:00
parent 717323019d
commit a895687731
16 changed files with 886 additions and 27 deletions

View File

@@ -184,6 +184,15 @@ public class UserController {
}
}
/**
* 修改用户
*/
@RequestMapping("/updateUser")
public R updateUser(@RequestBody MyUserEntity userEntity){
userService.updateById(userEntity);
return R.ok();
}
/**
* 验证码注册或登录
*/