Commit 55a3ab17 authored by tianbo's avatar tianbo

查询参数修改

parent 1636d40b
......@@ -990,6 +990,18 @@
<if test="key == 'companyId' and value != null and value != ''">
and a.biz_info->'$.pointId' = #{value}
</if>
<if test="key == 'dangerType' and value != null and value != ''">
and a.danger_type = #{value}
</if>
<if test="key == 'overtimeState' and value != null and value != ''">
and a.overtime_state = #{value}
</if>
<if test="key == 'beginDeadline' and value != null and value != ''">
and a.reform_limit_date <![CDATA[ >= ]]> #{value}
</if>
<if test="key == 'endDeadline' and value != null and value != ''">
and a.reform_limit_date <![CDATA[ <= ]]> #{value}
</if>
</foreach>
</where>
<if test="paramMap.order != null and paramMap.order == 1">
......
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