|
|
|
@ -92,7 +92,12 @@
|
|
|
|
|
<if test="supervisionLarge != null and supervisionLarge != ''">and s.SUPERVISION_LARGE =
|
|
|
|
|
#{supervisionLarge}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="riskLevel != null and riskLevel != ''">and s.RISK_LEVEL = #{riskLevel}</if>
|
|
|
|
|
<if test="riskLevel != null and riskLevel != ''">
|
|
|
|
|
and s.RISK_LEVEL in
|
|
|
|
|
<foreach item="item" index="index" collection="riskLevel.split(',')" open="(" separator="," close=")">
|
|
|
|
|
#{riskLevel}
|
|
|
|
|
</foreach>
|
|
|
|
|
</if>
|
|
|
|
|
<if test="standLevel != null and standLevel != ''">and s.STAND_LEVEL = #{standLevel}</if>
|
|
|
|
|
<if test="examineEndTime != null ">and s.EXAMINE_END_TIME = #{examineEndTime}</if>
|
|
|
|
|
<if test="createId != null ">and s.create_id = #{createId}</if>
|
|
|
|
|