Commit 838c0051 by guojuxing

修改用户名称接口添加

parent e2519a6a
......@@ -263,6 +263,15 @@ public class UserController {
return ResultControllerUtils.commonResult(userApiService.listGicUser(UserDetailUtils.getUserDetail().getEnterpriseId()), UserOfGicVO.class);
}
@RequestMapping("/edit-user-name")
public RestResponse editUserName(String name) {
return OperationResultUtils.operationResult(userApiService
.updateOperationUser(UserDetailUtils.getUserDetail().getUserId(), name),
"修改用户名称",
UserDetailUtils.getUserDetail().getUserInfo().getPhoneNumber());
}
/**
* 逻辑删除用户对应分组数据
*
......
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