Newer
Older
casic-metering / casic-metering-dao / src / main / resources / mapper / system / SystemNoticeUserRelationMapper.xml
wangpeng on 7 Mar 2023 811 bytes 通知公告设置用户已读功能
<?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.casic.missiles.mapper.system.SystemNoticeUserRelationMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.casic.missiles.model.system.SystemNoticeUserRelation">
        <id column="id" property="id" />
        <result column="notice_id" property="noticeId" />
        <result column="user_id" property="userId" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, notice_id, user_id, create_time, update_time
    </sql>

</mapper>