🐛 消息中心排序问题优化,未读消息优先展示

This commit is contained in:
ronger 2021-03-06 10:00:42 +08:00
parent 0f1262fbfa
commit 0652405281

View File

@ -29,7 +29,7 @@
select * from forest_notification where has_read = '0' and id_user = #{idUser} order by created_time desc
</select>
<select id="selectNotifications" resultMap="DTOResultMapper">
select * from forest_notification where id_user = #{idUser} order by created_time desc
select * from forest_notification where id_user = #{idUser} order by has_read,created_time desc
</select>
<select id="selectNotification" resultMap="BaseResultMapper">
select * from forest_notification where id_user = #{idUser} and data_id = #{dataId} and data_type = #{dataType}