|
|
|
@@ -56,6 +56,9 @@ |
|
|
|
<if test=" null != status "> |
|
|
|
and `status` = #{status} |
|
|
|
</if> |
|
|
|
<if test=" null != businessType "> |
|
|
|
and `business_type` = #{businessType} |
|
|
|
</if> |
|
|
|
<if test=" null != ids "> |
|
|
|
and id in |
|
|
|
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")"> |
|
|
|
@@ -76,6 +79,9 @@ |
|
|
|
<select id="myHandelList" parameterType="com.iformall.domain.po.WxFlowRecord" resultMap="BaseResultMap"> |
|
|
|
select f.* from wx_flow_record f |
|
|
|
where f.user_id = #{userId} and f.status not in(1,4,5) |
|
|
|
<if test=" null != businessType "> |
|
|
|
and `business_type` = #{businessType} |
|
|
|
</if> |
|
|
|
order by create_date desc |
|
|
|
</select> |
|
|
|
|
|
|
|
|