update 完善auth服务 重构用户注册流程 补全接口文档

This commit is contained in:
疯狂的狮子li
2022-02-17 18:50:23 +08:00
parent 27087e5d1e
commit ba635272fe
8 changed files with 88 additions and 35 deletions

View File

@@ -25,4 +25,12 @@ public interface RemoteUserService {
* @return 结果
*/
Boolean registerUserInfo(SysUser sysUser);
/**
* 检查用户名是否唯一
*
* @param username 用户名
* @return 结果
*/
String checkUserNameUnique(String username);
}