修改企业用户注册

This commit is contained in:
sh
2025-12-08 17:06:42 +08:00
parent 9e4191fc90
commit e04ef92a65

View File

@@ -288,13 +288,6 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserMapper,AppUser> imple
if (registerBody == null) {
throw new IllegalArgumentException("注册请求参数不能为空");
}
AppUser appUser = registerBody.getAppUser();
if (appUser == null) {
throw new IllegalArgumentException("用户基础信息不能为空");
}
if (StringUtils.isEmpty(appUser.getIsCompanyUser())) {
throw new IllegalArgumentException("用户类型isCompanyUser不能为空");
}
}
/**