|
|
|
@ -485,12 +485,13 @@ public class SysUserController extends CoreBaseController {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据id重置用户密码,自己设置密码
|
|
|
|
|
*
|
|
|
|
|
* @param id 用户id
|
|
|
|
|
* @return 处理结果
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/reset-pwd/{id}/{password}")
|
|
|
|
|
@ApiOperation(value = "密码重置(输入)", notes = "根据id和录入密码重置用户密码")
|
|
|
|
|
public ResultBean updateResetPassword(@PathVariable String id,@PathVariable String password){
|
|
|
|
|
public ResultBean updateResetPassword(@PathVariable("id") String id, @PathVariable("password") String password) {
|
|
|
|
|
try {
|
|
|
|
|
startMultiService();
|
|
|
|
|
|
|
|
|
|