|
|
@@ -459,6 +459,9 @@
|
|
|
<if test="record.statusFlag != null and !"".equals(record.statusFlag)">
|
|
|
and status_flag = #{record.statusFlag}
|
|
|
</if>
|
|
|
+ <if test="record.statusStr != null and !"".equals(record.statusStr)">
|
|
|
+ and status_flag in (${record.statusStr})
|
|
|
+ </if>
|
|
|
<if test="record.fee != null and !"".equals(record.fee)">
|
|
|
and fee = #{record.fee}
|
|
|
</if>
|
|
|
@@ -616,6 +619,9 @@
|
|
|
<if test="statusFlag != null and !"".equals(statusFlag)">
|
|
|
and status_flag = #{statusFlag}
|
|
|
</if>
|
|
|
+ <if test="statusStr != null and !"".equals(statusStr)">
|
|
|
+ and status_flag in (${statusStr})
|
|
|
+ </if>
|
|
|
<if test="fee != null and !"".equals(fee)">
|
|
|
and fee = #{fee}
|
|
|
</if>
|