Merge remote-tracking branch 'origin/master'

This commit is contained in:
LiuY 2022-04-29 11:11:36 +08:00
commit 99470aeaf3

View File

@ -125,6 +125,13 @@
FIND_IN_SET(#{userId}, copy_for_ids) FIND_IN_SET(#{userId}, copy_for_ids)
OR OR
FIND_IN_SET(#{userId}, secret_ids) FIND_IN_SET(#{userId}, secret_ids)
<if test="keywords != null and keywords != ''">
AND (
recipient_names like CONCAT('%', CONCAT(#{keywords}, '%'))
OR
title like CONCAT('%', CONCAT(#{keywords}, '%'))
)
</if>
ORDER BY gmt_create DESC ORDER BY gmt_create DESC
</select> </select>