forest/src/main/java/mapper/NotificationMapper.xml

28 lines
1.7 KiB
XML
Raw Normal View History

2020-01-03 19:28:10 +08:00
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.rymcu.vertical.mapper.NotificationMapper">
<resultMap id="BaseResultMapper" type="com.rymcu.vertical.entity.Notification">
<id column="id" property="idNotification"></id>
<result column="id_user" property="idUser"></result>
<result column="data_type" property="dataType"></result>
<result column="data_id" property="dataId"></result>
<result column="data_summary" property="dataSummary"></result>
<result column="has_read" property="hasRead"></result>
2020-01-23 00:39:43 +08:00
<result column="created_time" property="createdTime"></result>
2020-01-03 19:28:10 +08:00
</resultMap>
2020-01-27 12:12:10 +08:00
<insert id="insertNotification">
insert into vertical_notification (id_user, data_type, data_id, data_summary, created_time) values (#{idUser}, #{dataType}, #{dataId}, #{dataSummary}, sysdate())
</insert>
<update id="readNotification">
update vertical_notification set has_read = '1' where id = #{id}
</update>
2020-01-03 19:28:10 +08:00
<select id="selectUnreadNotifications" resultMap="BaseResultMapper">
2020-01-27 12:12:10 +08:00
select * from vertical_notification where has_read = '0' and id_user = #{idUser} order by created_time desc
2020-01-03 19:28:10 +08:00
</select>
<select id="selectNotifications" resultMap="BaseResultMapper">
2020-01-27 12:12:10 +08:00
select * from vertical_notification where id_user = #{idUser} order by created_time desc
</select>
<select id="selectNotification" resultMap="BaseResultMapper">
select * from vertical_notification where id_user = #{idUser} and data_id = #{dataId} and data_type = #{dataType}
2020-01-03 19:28:10 +08:00
</select>
</mapper>