大屏接口

dev_0531
yechenhao 6 years ago
parent 147c219935
commit 0100793bc4

@ -722,8 +722,10 @@ public class CustomerViewService {
//查询企业微信已配置联系我的用户 //查询企业微信已配置联系我的用户
int i = 0; int i = 0;
for (OpCustomer customer : customers) { List<OpCustomer> opCustomers = customers.subList(132800, customers.size());
for (OpCustomer customer : opCustomers) {
i++; i++;
try{
String wechatUniId = customer.getWechatUniId(); String wechatUniId = customer.getWechatUniId();
if (StringUtils.isBlank(wechatUniId)){ if (StringUtils.isBlank(wechatUniId)){
continue; continue;
@ -778,6 +780,9 @@ public class CustomerViewService {
wrapper1.eq("wechat_uni_id", wechatUniId); wrapper1.eq("wechat_uni_id", wechatUniId);
opCustomerDOMapper.update(opCustomer, wrapper1); opCustomerDOMapper.update(opCustomer, wrapper1);
} }
}catch (Exception e){
log.error("同步vip出错",e);
}
} }
} }
} }

Loading…
Cancel
Save