Commit 8b6d3505f72da306cbb30771009d5f4621f438d4

Authored by 张志伟
2 parents a24522dd aad5fd0f

Merge remote-tracking branch 'origin/test'

fw-shirasawa-dao/src/main/resources/mapper/FollowRecordMapper.xml
... ... @@ -113,6 +113,9 @@
113 113 <if test="condition.frameNo != null and condition.frameNo !='' ">
114 114 and t3.frame_no like concat('%', #{condition.frameNo}, '%')
115 115 </if>
  116 + <if test="condition.bizId != null and condition.bizId !='' ">
  117 + and t1.bizId = #{condition.bizId}
  118 + </if>
116 119 <if test="condition.type !=null">
117 120 and t1.type = #{condition.type}
118 121 </if>
... ... @@ -185,6 +188,9 @@
185 188 <if test="condition.frameNo != null and condition.frameNo !='' ">
186 189 and t3.frame_no like concat('%', #{condition.frameNo}, '%')
187 190 </if>
  191 + <if test="condition.bizId != null and condition.bizId !='' ">
  192 + and t1.bizId = #{condition.bizId}
  193 + </if>
188 194 <if test="condition.type !=null">
189 195 and t1.type = #{condition.type}
190 196 </if>
... ...
fw-shirasawa-domain/src/main/java/cn/fw/shirasawa/domain/query/FollowRecordPoolQuery.java
... ... @@ -51,6 +51,10 @@ public class FollowRecordPoolQuery extends PoolQuery {
51 51 private Boolean owner;
52 52 private String startTime;
53 53 /**
  54 + * 业务id 【活动编号等 全匹配】
  55 + */
  56 + private String bizId;
  57 + /**
54 58 * 数据时间 【查询时精确到月份】
55 59 * 无时间是默认当天数据
56 60 */
... ...