FollowRelEntityMapper.xml 852 Bytes
Newer Older
张辰's avatar
张辰 committed
1 2
<?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">
刘基明's avatar
刘基明 committed
3
<mapper namespace="com.tanpu.community.dao.mapper.community.FollowRelMapper">
张辰's avatar
张辰 committed
4 5

    <!-- 通用查询映射结果 -->
刘基明's avatar
刘基明 committed
6
    <resultMap id="BaseResultMap" type="com.tanpu.community.dao.entity.community.FollowRelEntity">
张辰's avatar
张辰 committed
7
        <id column="id" property="id" />
刘基明's avatar
刘基明 committed
8 9
        <result column="idol_id" property="idolId" />
        <result column="fans_id" property="fansId" />
刘基明's avatar
刘基明 committed
10 11
        <result column="follow_time" property="followTime" />
        <result column="unfollow_time" property="unfollowTime" />
张辰's avatar
张辰 committed
12 13 14 15 16 17
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
        <result column="delete_tag" property="deleteTag" />
    </resultMap>

</mapper>