|
@@ -570,6 +570,13 @@
|
|
|
<if test="vo.searchType == 2 and vo.queryValue != null and vo.queryValue != ''">
|
|
|
and uaf.file_name like concat('%',#{vo.queryValue},'%')
|
|
|
</if>
|
|
|
+ <if test="vo.searchType == 2 and vo.queryList != null and vo.queryList.size() > 0">
|
|
|
+ and (
|
|
|
+ <foreach collection="vo.queryList" item="queryItem" separator=" OR ">
|
|
|
+ uaf.file_name like concat('%',#{queryItem},'%')
|
|
|
+ </foreach>
|
|
|
+ )
|
|
|
+ </if>
|
|
|
<if test="vo.storageTimes != null and vo.storageTimes != ''">
|
|
|
and uaa.storage_time in
|
|
|
<foreach collection="vo.storageTimes" item="storageTime" open="(" separator="," close=")">
|