FollowRelEntityMapper.xml 852 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.tanpu.community.dao.mapper.community.FollowRelMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.tanpu.community.dao.entity.community.FollowRelEntity">
        <id column="id" property="id" />
        <result column="idol_id" property="idolId" />
        <result column="fans_id" property="fansId" />
        <result column="follow_time" property="followTime" />
        <result column="unfollow_time" property="unfollowTime" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
        <result column="delete_tag" property="deleteTag" />
    </resultMap>

</mapper>