|
|
|
@ -53,6 +53,13 @@ |
|
|
|
<if test="query.approvalStatus != null"> |
|
|
|
<if test="query.approvalStatus != null"> |
|
|
|
AND a.APPROVAL_STATUS = #{query.approvalStatus} |
|
|
|
AND a.APPROVAL_STATUS = #{query.approvalStatus} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="query.approvalStatusList != null and query.approvalStatusList != ''"> |
|
|
|
|
|
|
|
AND a.APPROVAL_STATUS IN |
|
|
|
|
|
|
|
<foreach collection="query.approvalStatusList.split(',')" item="approval" |
|
|
|
|
|
|
|
open="(" separator="," close=")" index="index"> |
|
|
|
|
|
|
|
#{approval} |
|
|
|
|
|
|
|
</foreach> |
|
|
|
|
|
|
|
</if> |
|
|
|
<if test="query.submitTimeStart != null"> |
|
|
|
<if test="query.submitTimeStart != null"> |
|
|
|
AND a.SUBMIT_TIME >= #{query.submitTimeStart} |
|
|
|
AND a.SUBMIT_TIME >= #{query.submitTimeStart} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|