|
@@ -74,9 +74,9 @@ public class OpenTenantController {
|
|
// 根据手机号 判断是否已经有机构账户
|
|
// 根据手机号 判断是否已经有机构账户
|
|
TenantStaff tenantStaff = tenantStaffService.getByPhone(phone);
|
|
TenantStaff tenantStaff = tenantStaffService.getByPhone(phone);
|
|
if (tenantStaff != null) {
|
|
if (tenantStaff != null) {
|
|
- throw new BizException("该手机号已经有机构账号");
|
|
|
|
|
|
+ return HttpResponseResult.status(true);
|
|
}
|
|
}
|
|
- return HttpResponseResult.status(true);
|
|
|
|
|
|
+ return HttpResponseResult.status(false);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|