| | |
| | | |
| | | |
| | | <select id="selectFwDefenseScenePage" resultMap="fwDefenseSceneResultMap"> |
| | | select * from ja_fw_defense_scene |
| | | select |
| | | * |
| | | from |
| | | ja_fw_defense_scene |
| | | <where> |
| | | and is_deleted = 0 |
| | | <if test="param2.id != null and param2.id != ''"> |
| | |
| | | <if test="param2.status != null and param2.status != ''"> |
| | | and status = #{param2.status} |
| | | </if> |
| | | <if test="param2.deptList != null and param2.deptList.size > 0"> |
| | | and create_dept in |
| | | <foreach collection="param2.deptList" item="deptId" open="(" separator="," close=")"> |
| | | #{deptId} |
| | | </foreach> |
| | | </if> |
| | | </where> |
| | | </select> |
| | | |