71106修改,手机端-待办中心 流程类型筛选条件多选.

This commit is contained in:
wangzhijiang
2023-06-20 16:22:02 +08:00
parent e267376165
commit 0eff076e3c
@@ -33,7 +33,10 @@
and temp.standard_info like CONCAT(CONCAT('%',#{params.standardInfo}),'%')
</if>
<if test="params.flowType != null and params.flowType !=''">
and temp.flow_type = #{params.flowType}
and temp.flow_type in
<foreach collection="params.flowType.split(',')" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="params.status != null and params.status !=''">
and temp.status = #{params.status}