新增内部消息站内信功能。

This commit is contained in:
thinkgem
2019-03-20 00:24:02 +08:00
parent b6c992787d
commit a22539808f
3 changed files with 12 additions and 3 deletions

View File

@@ -12,4 +12,13 @@
ORDER BY ${sqlMap.order.toSql()}
</select> -->
<update id="updateReadStatus">
UPDATE ${_prefix}sys_msg_inner_record SET
read_status = #{readStatus},
read_date = #{readDate}
WHERE msg_inner_id = #{msgInnerId}
AND receive_user_code = #{receiveUserCode}
AND read_date is null
</update>
</mapper>