UserPaperQuestionMapper.xml 879 B

1234567891011121314151617181920
  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.UserPaperQuestionMapper">
  4. <resultMap id="BaseResultMap" type="com.qxgmat.data.dao.entity.UserPaperQuestion">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="id" jdbcType="INTEGER" property="id" />
  9. <result column="user_id" jdbcType="INTEGER" property="userId" />
  10. <result column="paper_id" jdbcType="INTEGER" property="paperId" />
  11. <result column="question_no_id" jdbcType="INTEGER" property="questionNoId" />
  12. <result column="paper_module" jdbcType="VARCHAR" property="paperModule" />
  13. </resultMap>
  14. <sql id="Base_Column_List">
  15. <!--
  16. WARNING - @mbg.generated
  17. -->
  18. `id`, `user_id`, `paper_id`, `question_no_id`, `paper_module`
  19. </sql>
  20. </mapper>