Commit d26e35ce authored by xiaozhe.chen's avatar xiaozhe.chen

客服系统对接中台接口,用户修改、修改密码、修改账户状态

parent 9eeb4613
......@@ -132,5 +132,40 @@ public class UserRest {
}
/**
* 修改用户详细信息
*
* @return
*/
@PostMapping(value = "/modify/user_detail")
public JsonResult modifyUserDetail() {
return JsonResult.buildSuccessResult("success", null);
}
/**
* 重置密码
*
* @return
*/
@PostMapping(value = "/pwd/reset")
public JsonResult passwordReset() {
return JsonResult.buildSuccessResult("success", null);
}
/**
* 修改用户账户状态(注销/恢复)
*
* @return
*/
@PostMapping(value = "/modify/account/status")
public JsonResult modifyAccountStatus() {
return JsonResult.buildSuccessResult("success", null);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment