ExercisePaperQuestionMapper.xml 948 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.qxgmat.data.dao.ExercisePaperQuestionMapper">
  4. <resultMap id="BaseResultMap" type="com.qxgmat.data.dao.entity.ExercisePaperQuestion">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="id" jdbcType="INTEGER" property="id" />
  9. <result column="paper_id" jdbcType="INTEGER" property="paperId" />
  10. <result column="question_id" jdbcType="INTEGER" property="questionId" />
  11. <result column="question_no_id" jdbcType="INTEGER" property="questionNoId" />
  12. <result column="no" jdbcType="INTEGER" property="no" />
  13. <result column="status" jdbcType="INTEGER" property="status" />
  14. </resultMap>
  15. <sql id="Base_Column_List">
  16. <!--
  17. WARNING - @mbg.generated
  18. -->
  19. `id`, `paper_id`, `question_id`, `question_no_id`, `no`, `status`
  20. </sql>
  21. </mapper>