ExaminationPaperMapper.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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.ExaminationPaperMapper">
  4. <resultMap id="BaseResultMap" type="com.qxgmat.data.dao.entity.ExaminationPaper">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="id" jdbcType="INTEGER" property="id" />
  9. <result column="struct_id" jdbcType="INTEGER" property="structId" />
  10. <result column="title" jdbcType="VARCHAR" property="title" />
  11. <result column="question_number" jdbcType="INTEGER" property="questionNumber" />
  12. <result column="status" jdbcType="INTEGER" property="status" />
  13. </resultMap>
  14. <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.qxgmat.data.dao.entity.ExaminationPaper">
  15. <!--
  16. WARNING - @mbg.generated
  17. -->
  18. <result column="question_no_ids" jdbcType="LONGVARCHAR" property="questionNoIds" />
  19. </resultMap>
  20. <sql id="Base_Column_List">
  21. <!--
  22. WARNING - @mbg.generated
  23. -->
  24. `id`, `struct_id`, `title`, `question_number`, `status`
  25. </sql>
  26. <sql id="Blob_Column_List">
  27. <!--
  28. WARNING - @mbg.generated
  29. -->
  30. `question_no_ids`
  31. </sql>
  32. </mapper>