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 19 * 保险公司名称
20 20 */
21 21 private String insComName;
22   - /**
23   - * 车牌号
24   - */
25   - private String plateNo;
26 22  
27 23 public Integer getType() {
28 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 22 */
23 23 private Long taskId;
24 24 /**
  25 + * 车牌号
  26 + */
  27 + private String plateNo;
  28 + /**
25 29 * 档案id
26 30 */
27 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 58 vo.setDeadline(followRecord.getDeadline());
59 59 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId());
60 60 vo.setName(customerDetailDto.getName());
  61 + vo.setPlateNo(customerDetailDto.getPlateNo());
61 62 vo.setCarImage(customerDetailDto.getCarImage());
62 63 vo.setBuyDate(customerDetailDto.getBuyDate());
63 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 63 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId());
64 64 vo.setName(customerDetailDto.getName());
65 65 vo.setCarImage(customerDetailDto.getCarImage());
  66 + vo.setPlateNo(customerDetailDto.getPlateNo());
66 67 Optional<InsuranceDTO> insuranceDTO = queryInsuInfo(followRecord.getCustomerId());
67 68 insuranceDTO.ifPresent(ins -> {
68 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 71 CustomerDetailDto customerDetailDto = queryCustomerInfo(followRecord.getCustomerId());
72 72 vo.setName(customerDetailDto.getName());
73 73 vo.setCarImage(customerDetailDto.getCarImage());
  74 + vo.setPlateNo(customerDetailDto.getPlateNo());
74 75 vo.setLastMileage(customerDetailDto.getCurrentMileage());
75 76  
76 77 OriginalData originalData = originalDataService.getOne(Wrappers.<OriginalData>lambdaQuery()
... ...