mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-05 23:11:24 +08:00
add the function of fuzzy query by senderIds had been completed
This commit is contained in:
@@ -50,12 +50,12 @@
|
||||
<if test="null!=startTime">
|
||||
and n.send_time >= #{startTime}
|
||||
</if>
|
||||
<if test="null !=endTime">
|
||||
<if test="null != endTime">
|
||||
and n.end_time < #{endTime}
|
||||
</if>
|
||||
<if test="null!=userName and userName!=''">
|
||||
and u.username = #{userName}
|
||||
</if>
|
||||
<foreach collection="userIdList" item="item" index="index" open="and u.id in (" separator="," close=")">
|
||||
#{item}
|
||||
</foreach>
|
||||
and n.deleted = 0
|
||||
and n.old = 0
|
||||
</where>
|
||||
|
||||
Reference in New Issue
Block a user