Browse Source

Initial commit

master
han\hanst 10 months ago
parent
commit
9b32b9b8ba
  1. 4
      target/classes/mapper/projectinfo/ProjectCaseDao.xml

4
target/classes/mapper/projectinfo/ProjectCaseDao.xml

@ -19,13 +19,13 @@
LEFT JOIN cus_group cg on cg.id=pc.group_id
<where>
1 = 1
<if test="param2.statusList != '' and param2.statusList.length>0 ">
<if test="param2.statusList != null and param2.statusList != '' and param2.statusList.length>0 ">
and pc.status in
<foreach item="item" index="index" collection="param2.statusList" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="param2.innerStatusList != '' and param2.innerStatusList.length>0 ">
<if test="param2.innerStatusList != null and param2.innerStatusList != '' and param2.innerStatusList.length>0 ">
and pc.inner_status in
<foreach item="item" index="index" collection="param2.innerStatusList" open="(" separator="," close=")">
#{item}

Loading…
Cancel
Save