Commit 86298eb08643fa7e6422e7144b1e2a9da36974b2

Authored by 张志伟
2 parents 2a5a5359 9aa93546

Merge remote-tracking branch 'origin/dev' into test

fw-valhalla-dao/src/main/resources/mapper/FollowTaskMapper.xml
... ... @@ -9,6 +9,7 @@
9 9 SELECT t1.id,
10 10 if(t1.type=3 , t4.plate_no, t3.plate_no)plate_no,
11 11 if(t1.type=3 , t4.frame_no, t3.frame_no)frame_no,
  12 + if(t1.type=3 , t4.mobile, t5.mobile) mobile,
12 13 t3.cus_level cus_level,
13 14 t2.expires loan_expires,
14 15 t1.type type,
... ... @@ -33,6 +34,7 @@
33 34 t1.group_id group_id
34 35 FROM follow_task t1
35 36 left join customer t3 on t1.customer_id = t3.id
  37 + left join customer_base_info t5 on t3.base_id = t5.id
36 38 left join accident_pool t4 on t1.customer_id = t4.id
37 39 left join customer_loan_info t2 on t3.frame_no = t2.frame_no and t3.group_id = t2.group_id
38 40 <where>
... ...
fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/dto/FollowPoolDTO.java
... ... @@ -16,6 +16,7 @@ public class FollowPoolDTO {
16 16 * 车牌号
17 17 */
18 18 private String plateNo;
  19 + private String mobile;
19 20 /**
20 21 * 客户星级
21 22 */
... ... @@ -98,6 +99,7 @@ public class FollowPoolDTO {
98 99 private Date closeTime;
99 100 /**
100 101 * 战败类型
  102 + *
101 103 * @see cn.fw.valhalla.domain.enums.TaskDefeatTypeEnum
102 104 */
103 105 private Integer initiative;
... ...
fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/vo/pool/FollowPoolListVO.java
... ... @@ -18,6 +18,7 @@ public class FollowPoolListVO {
18 18 * 车牌号
19 19 */
20 20 private String plateNo;
  21 + private String mobile;
21 22 /**
22 23 * 客户星级
23 24 */
... ...
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/FollowBizService.java
... ... @@ -207,7 +207,7 @@ public class FollowBizService {
207 207 .append(";")
208 208 .append("手机号:")
209 209 .append(staffInfo.getMobile())
210   - .append(";微信同号");
  210 + .append("; 微信同号。");
211 211 return template.toString();
212 212 }
213 213  
... ...