Commit 6d5a775e7fbd2caf610e411f51b0705bc7fca113

Authored by 张志伟
1 parent 1ea944d3

:construction: 新增

fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/vo/follow/ACTodoListVO.java
@@ -19,10 +19,6 @@ public class ACTodoListVO extends FollowTodoListVO { @@ -19,10 +19,6 @@ public class ACTodoListVO extends FollowTodoListVO {
19 * 保险公司名称 19 * 保险公司名称
20 */ 20 */
21 private String insComName; 21 private String insComName;
22 - /**  
23 - * 车牌号  
24 - */  
25 - private String plateNo;  
26 22
27 public Integer getType() { 23 public Integer getType() {
28 return FollowTypeEnum.AC.getValue(); 24 return FollowTypeEnum.AC.getValue();
fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/vo/follow/FollowTodoListVO.java
@@ -22,6 +22,10 @@ public class FollowTodoListVO { @@ -22,6 +22,10 @@ public class FollowTodoListVO {
22 */ 22 */
23 private Long taskId; 23 private Long taskId;
24 /** 24 /**
  25 + * 车牌号
  26 + */
  27 + private String plateNo;
  28 + /**
25 * 档案id 29 * 档案id
26 */ 30 */
27 private Long customerId; 31 private Long customerId;
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/impl/FMFollowStrategy.java
@@ -58,6 +58,7 @@ public class FMFollowStrategy extends AbstractFollowStrategy { @@ -58,6 +58,7 @@ public class FMFollowStrategy extends AbstractFollowStrategy {
58 vo.setDeadline(followRecord.getDeadline()); 58 vo.setDeadline(followRecord.getDeadline());
59 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId()); 59 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId());
60 vo.setName(customerDetailDto.getName()); 60 vo.setName(customerDetailDto.getName());
  61 + vo.setPlateNo(customerDetailDto.getPlateNo());
61 vo.setCarImage(customerDetailDto.getCarImage()); 62 vo.setCarImage(customerDetailDto.getCarImage());
62 vo.setBuyDate(customerDetailDto.getBuyDate()); 63 vo.setBuyDate(customerDetailDto.getBuyDate());
63 Optional<FollowTask> followTask = Optional.ofNullable(followTaskService.getById(followRecord.getTaskId())); 64 Optional<FollowTask> followTask = Optional.ofNullable(followTaskService.getById(followRecord.getTaskId()));
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/impl/IRFollowStrategy.java
@@ -63,6 +63,7 @@ public class IRFollowStrategy extends AbstractFollowStrategy { @@ -63,6 +63,7 @@ public class IRFollowStrategy extends AbstractFollowStrategy {
63 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId()); 63 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId());
64 vo.setName(customerDetailDto.getName()); 64 vo.setName(customerDetailDto.getName());
65 vo.setCarImage(customerDetailDto.getCarImage()); 65 vo.setCarImage(customerDetailDto.getCarImage());
  66 + vo.setPlateNo(customerDetailDto.getPlateNo());
66 Optional<InsuranceDTO> insuranceDTO = queryInsuInfo(followRecord.getCustomerId()); 67 Optional<InsuranceDTO> insuranceDTO = queryInsuInfo(followRecord.getCustomerId());
67 insuranceDTO.ifPresent(ins -> { 68 insuranceDTO.ifPresent(ins -> {
68 vo.setInsComName(ins.getInsurerName()); 69 vo.setInsComName(ins.getInsurerName());
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/impl/RMFollowStrategy.java
@@ -71,6 +71,7 @@ public class RMFollowStrategy extends AbstractFollowStrategy { @@ -71,6 +71,7 @@ public class RMFollowStrategy extends AbstractFollowStrategy {
71 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId()); 71 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId());
72 vo.setName(customerDetailDto.getName()); 72 vo.setName(customerDetailDto.getName());
73 vo.setCarImage(customerDetailDto.getCarImage()); 73 vo.setCarImage(customerDetailDto.getCarImage());
  74 + vo.setPlateNo(customerDetailDto.getPlateNo());
74 vo.setLastMileage(customerDetailDto.getCurrentMileage()); 75 vo.setLastMileage(customerDetailDto.getCurrentMileage());
75 76
76 OriginalData originalData = originalDataService.getOne(Wrappers.<OriginalData>lambdaQuery() 77 OriginalData originalData = originalDataService.getOne(Wrappers.<OriginalData>lambdaQuery()