Commit e4cf571b authored by litengwei's avatar litengwei

代码提交

parent 974bc1f8
...@@ -170,10 +170,16 @@ ...@@ -170,10 +170,16 @@
AND FIND_IN_SET(#{map.positionType},g.positionType) AND FIND_IN_SET(#{map.positionType},g.positionType)
</if> </if>
<if test="map.peopleType != null and map.peopleType != ''"> <if test="map.peopleType != null and map.peopleType != ''">
AND g.peopleType = #{map.peopleType} AND g.peopleType IN
<foreach item="item" index="index" collection="map.peopleType" open="(" separator="," close=")">
#{item}
</foreach>
</if> </if>
<if test="map.fireManagementPost != null and map.fireManagementPost != ''"> <if test="map.fireManagementPost != null and map.fireManagementPost != ''">
AND g.fireManagementPost = #{map.fireManagementPost} AND g.fireManagementPost IN
<foreach item="item" index="index" collection="map.fireManagementPost" open="(" separator="," close=")">
#{item}
</foreach>
</if> </if>
GROUP BY GROUP BY
u.sequence_nbr , u.sequence_nbr ,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment