|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Async | 
|---|
|  |  |  | public int dealCustomerLogData(CustomerLog customerLog){ | 
|---|
|  |  |  | public void dealCustomerLogData(CustomerLog customerLog){ | 
|---|
|  |  |  | if(StringUtils.isBlank(customerLog.getPhone())){ | 
|---|
|  |  |  | return; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | CrmCustomerInfoRequest entity = new CrmCustomerInfoRequest(); | 
|---|
|  |  |  | entity.setId(customerLog.getId()); | 
|---|
|  |  |  | entity.setName(customerLog.getName()); | 
|---|
|  |  |  | 
|---|
|  |  |  | .set(CustomerLog::getCrmStatus,Constants.ONE ) | 
|---|
|  |  |  | .set(CustomerLog::getCrmInfo,crmInfo ) | 
|---|
|  |  |  | .set(CustomerLog::getCrmDate,new Date() ));// 更新状态 | 
|---|
|  |  |  | return status;// 默认失败 | 
|---|
|  |  |  | } | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获取导购绑定列表 | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public   <T> CRMBaseResponse<T> sendCusHttpRequest(String interfaceUrl,  String name,  String param){ | 
|---|
|  |  |  | log.info("【"+name+"】================开始===="+ JSONObject.toJSONString(param)); | 
|---|
|  |  |  | String appKey = (String) redisTemplate.opsForValue().get(Constants.RedisKeys.ZBOM_CRM_API_KEY); | 
|---|
|  |  |  | String appKey = (String) redisTemplate.opsForValue().get(Constants.RedisKeys.ZBOM_CRM_POSTCUS_API_KEY); | 
|---|
|  |  |  | String url = redisTemplate.opsForValue().get(Constants.RedisKeys.ZBOM_CRM_API_URL) + interfaceUrl ; | 
|---|
|  |  |  | long _t = System.currentTimeMillis(); | 
|---|
|  |  |  | if (StringUtils.isNotBlank(appKey)||StringUtils.isNotBlank(url)) { | 
|---|