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