Commit 56c34e9b authored by huyuchen's avatar huyuchen

Merge remote-tracking branch 'origin/MVP1.7.5' into MVP1.7.5

parents eeea4fa6 059462d6
......@@ -100,7 +100,7 @@ public class WxLoginAuthenticationFilter extends AbstractAuthenticationProcessin
throw new AuthenticationServiceException("获取企业微信用户失败");
}
// log.info(JSONObject.toJSONString(userResult)); {"errcode":40014,"errmsg":"invalid access_token"}
//log.error(JSONObject.toJSONString(userResult));
JSONObject jsonObject = JSONObject.parseObject(userResult);
if (StringUtils.equals(wxConfig.getAccossTokenInvliad(), jsonObject.getString(wxConfig.getErrcode()))) {
wxConfig.removeAccessToken(agentId);
......
......@@ -166,9 +166,10 @@ public class TInsuranceUnpurchasePersonServiceImpl extends ServiceImpl<TInsuranc
if (listVoR != null && listVoR.getData() != null
&& listVoR.getData().getListVo() != null && !listVoR.getData().getListVo().isEmpty()) {
List<String> socialList = listVoR.getData().getListVo();
Map<String, String> socialMap = new HashMap<>();
Map<String, Integer> socialMap = new HashMap<>();
Integer value = CommonConstants.ONE_INT;
for (String s : socialList) {
socialMap.put(s, s);
socialMap.put(s, value);
}
// 更新为是在保
List<String> updateZero = new ArrayList<>();
......
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