QuestionNoMapper.xml 1.2 KB

12345678910111213141516171819202122232425
  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.QuestionNoMapper">
  4. <resultMap id="BaseResultMap" type="com.qxgmat.data.dao.entity.QuestionNo">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="id" jdbcType="INTEGER" property="id" />
  9. <result column="question_id" jdbcType="INTEGER" property="questionId" />
  10. <result column="module" jdbcType="VARCHAR" property="module" />
  11. <result column="no" jdbcType="VARCHAR" property="no" />
  12. <result column="module_struct" jdbcType="VARCHAR" property="moduleStruct" />
  13. <result column="total_time" jdbcType="INTEGER" property="totalTime" />
  14. <result column="total_number" jdbcType="INTEGER" property="totalNumber" />
  15. <result column="total_correct" jdbcType="INTEGER" property="totalCorrect" />
  16. <result column="delete_time" jdbcType="TIMESTAMP" property="deleteTime" />
  17. </resultMap>
  18. <sql id="Base_Column_List">
  19. <!--
  20. WARNING - @mbg.generated
  21. -->
  22. `id`, `question_id`, `module`, `no`, `module_struct`, `total_time`, `total_number`,
  23. `total_correct`, `delete_time`
  24. </sql>
  25. </mapper>