Commit a3aaf4ad by 陶光胜

代码规范

parent 8de7ed52
......@@ -285,7 +285,7 @@ public class BillingAccountController {
public RestResponse ssoToMarketService() throws IOException {
Integer enterpriseId = UserDetailUtils.getUserDetail().getEnterpriseId();
ServiceResponse<String> result = marketUserApiService
.BindGicEnterprise(Long.valueOf(enterpriseId), null, null, null);
.bindGicEnterprise(Long.valueOf(enterpriseId), null, null, null);
if (result.isSuccess()) {
Config config = ConfigService.getConfig("COMMON.4.0-gic-properties");
String url = config.getProperty("service_host", "").replace("/gic", "");
......
......@@ -74,7 +74,7 @@ public class LoginController {
public RestResponse bind(Integer enterpriseId, String nationCode, String phone, String password)
throws IOException {
return ResultControllerUtils.commonResult(
marketUserApiService.BindGicEnterprise(Long.valueOf(enterpriseId), nationCode.replace("+", ""), phone, password));
marketUserApiService.bindGicEnterprise(Long.valueOf(enterpriseId), nationCode.replace("+", ""), phone, password));
}
/**
......
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