ZpglCptkMapper.xml 899 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<?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="cn.timer.api.dao.zpgl.ZpglCptkMapper">

	<!-- 可根据自己的需求,是否要使用 -->
    <resultMap type="cn.timer.api.bean.zpgl.ZpglCptk" id="zpglCptkMap">
        <result property="id" column="id"/>
        <result property="question" column="question"/>
        <result property="answerA" column="answer_a"/>
        <result property="answerB" column="answer_b"/>
        <result property="answerC" column="answer_c"/>
        <result property="answerD" column="answer_d"/>
14
        <result property="sort" column="sort"/>
15 16 17 18 19 20 21
        <result property="userId" column="user_id"/>
        <result property="userName" column="user_name"/>
        <result property="createTime" column="create_time"/>
    </resultMap>


</mapper>