TopicSubjectEntityMapper.xml 809 Bytes
Newer Older
刘基明's avatar
刘基明 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?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.TopicSubjectMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.tanpu.community.dao.entity.community.TopicSubjectEntity">
        <id column="id" property="id" />
        <result column="topic_id" property="topicId" />
        <result column="subject_id" property="subjectId" />
        <result column="subject_type" property="subjectType" />
        <result column="subject_sub_type" property="subjectSubType" />
        <result column="create_by" property="createBy" />
        <result column="create_time" property="createTime" />
    </resultMap>

</mapper>