Commit 8f3f324339d08d1b78c5a67fbc542ab1cc5316db

Authored by 张志伟
1 parent 5ed9ef18

feature(*): 修复bug

- 修复bug
fw-valhalla-dao/src/main/resources/mapper/PubCluePoolMapper.xml
... ... @@ -42,6 +42,9 @@
42 42 <if test="condition.userId !=null">
43 43 and t1.follow_user = #{condition.userId}
44 44 </if>
  45 + <if test="condition.source != null">
  46 + and t6.source_type = #{condition.source}
  47 + </if>
45 48 <if test="condition.userName !=null and condition.userName != ''">
46 49 and t1.follow_user_name like concat('%',#{condition.userName},'%')
47 50 </if>
... ... @@ -119,6 +122,9 @@
119 122 <if test="condition.userId !=null">
120 123 and t1.follow_user = #{condition.userId}
121 124 </if>
  125 + <if test="condition.source != null">
  126 + and t6.source_type = #{condition.source}
  127 + </if>
122 128 <if test="condition.userName !=null and condition.userName != ''">
123 129 and t1.follow_user_name like concat('%',#{condition.userName},'%')
124 130 </if>
... ...
fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/query/FollowPoolQueryVO.java
... ... @@ -48,6 +48,10 @@ public class FollowPoolQueryVO extends PoolQuery {
48 48 * 战败类型
49 49 */
50 50 private Integer initiative;
  51 + /**
  52 + * 来源[公共池线索用]
  53 + */
  54 + private Integer source;
51 55 private String closeTime;
52 56  
53 57 public Integer getLoanCustomer() {
... ...