Commit d9303c2f authored by 武飞达's avatar 武飞达

fix

parent f3ab4d38
......@@ -30,6 +30,7 @@ import cn.quantgroup.customer.service.IXyqbService;
import cn.quantgroup.customer.service.http.IHttpService;
import cn.quantgroup.customer.util.*;
import cn.quantgroup.riskcontrol.model.AuthenticationUserDetail;
import cn.quantgroup.tech.util.TechEnvironment;
import cn.quantgroup.user.retbean.XUser;
import cn.quantgroup.user.retbean.XUserDetail;
import cn.quantgroup.user.vo.UserSysResult;
......@@ -847,6 +848,10 @@ public class UserServiceImpl implements IUserService {
param.put("tenantId", "560761");
String result = httpService.post(kdsp, header, param);
log.info("[user][modifyAccountStatusDisableNew] 请求业务系统返回值:{}", result);
// todo 提测前需要干掉
if (!TechEnvironment.isPro()) {
result = "{\"msg\":\"成功\",\"code\":\"0000\",\"businessCode\":\"0000\",\"codeSuccess\":true,\"success\":true,\"data\":{\"userStatus\":2,\"message\":\"\"}}";
}
if(result!=null){
JSONObject jsonObject = JSONObject.parseObject(result);;
String businessCode = jsonObject.getString("businessCode");
......
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