Commit 06c394ca868a2e481ab8aae6f5a62053236f65e5

Authored by 张志伟
1 parent 3ee6424c

feature(*): 新增区域站岗线索池

- 新增区域站岗线索池
fw-valhalla-dao/src/main/resources/mapper/ClueTaskMapper.xml
... ... @@ -11,6 +11,7 @@
11 11 if(t1.type=3 , t4.frame_no, t3.frame_no) frame_no,
12 12 if(t1.type=3 , t4.mobile, t5.mobile) mobile,
13 13 t3.cus_level cus_level,
  14 + t1.clue_id clue_id,
14 15 t2.expires loan_expires,
15 16 t1.type type,
16 17 t1.follow_user user_id,
... ...
fw-valhalla-dao/src/main/resources/mapper/PubCluePoolMapper.xml
... ... @@ -12,6 +12,7 @@
12 12 t5.mobile mobile,
13 13 t3.cus_level cus_level,
14 14 t2.expires loan_expires,
  15 + t1.clue_id clue_id,
15 16 t1.type type,
16 17 t6.source_type source_type,
17 18 t1.follow_user user_id,
... ...
fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/dto/FollowPoolDTO.java
... ... @@ -12,6 +12,7 @@ import java.util.Date;
12 12 @Data
13 13 public class FollowPoolDTO {
14 14 private Long id;
  15 + private Long clueId;
15 16 /**
16 17 * 车牌号
17 18 */
... ...
fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/vo/pool/FollowPoolListVO.java
... ... @@ -14,6 +14,7 @@ import java.util.Objects;
14 14 @Data
15 15 public class FollowPoolListVO {
16 16 private Long id;
  17 + private Long clueId;
17 18 /**
18 19 * 车牌号
19 20 */
... ...