|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @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;// 默认失败 | 
|---|
|  |  |  | } | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获取导购绑定列表 | 
|---|