| | |
| | | return userService.updateUserIsPartymember(idCard); |
| | | } |
| | | |
| | | @PostMapping("updateuserispartymemberByPhone") |
| | | public R updateUserIsPartymemberByPhone(@RequestParam("phone") String phone) { |
| | | return userService.updateUserIsPartymemberByPhone(phone); |
| | | } |
| | | |
| | | /** |
| | | * 修改用户为非党员状态 |
| | | * |
| | |
| | | return userService.updateUserPartyStatus(userId); |
| | | } |
| | | |
| | | @PostMapping("/uuLogin") |
| | | public R uuLogin(@RequestBody UuLoginVO uuLoginVO){ |
| | | return userService.uuLogin(uuLoginVO); |
| | | } |
| | | |
| | | /** |
| | | *导出验证密码 |
| | | */ |
| | | @GetMapping("/checkExport") |
| | | public R checkExport(@RequestParam("account")String account,@RequestParam("password")String password,@RequestParam("oldPassword")String oldPassword){ |
| | | return userService.checkExport(account,password,oldPassword); |
| | | } |
| | | } |