|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.daqing.financial.crms.service.impl; |
|
|
|
package com.daqing.financial.crms.service.impl; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
@ -70,8 +71,9 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerDao, CustomerEntity |
|
|
|
List<CustomerTO> customerTOS = new ArrayList<>(); |
|
|
|
List<CustomerTO> customerTOS = new ArrayList<>(); |
|
|
|
CustomerTO customerTO = new CustomerTO(); |
|
|
|
CustomerTO customerTO = new CustomerTO(); |
|
|
|
//TODO 远程调用查询客户经理信息的接口
|
|
|
|
//TODO 远程调用查询客户经理信息的接口
|
|
|
|
ResponseResult responseResult = hrmsFeignService.getEmployeeAndDeptById(ids); |
|
|
|
ResponseResult result = hrmsFeignService.getEmployeeAndDeptById(ids); |
|
|
|
List<EmployeeTO> employeeTO = (List<EmployeeTO>) responseResult.getData(); |
|
|
|
List<EmployeeTO> employeeTO = (List<EmployeeTO>) result.getData(); |
|
|
|
|
|
|
|
|
|
|
|
/*String data = (String) responseResult.getData(); |
|
|
|
/*String data = (String) responseResult.getData(); |
|
|
|
List<EmployeeTO> employeeTO = JSON.parseArray(data, EmployeeTO.class);*/ |
|
|
|
List<EmployeeTO> employeeTO = JSON.parseArray(data, EmployeeTO.class);*/ |
|
|
|
|
|
|
|
|
|
|
|