ExaminationStructMapper.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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.ExaminationStructMapper">
  4. <resultMap id="BaseResultMap" type="com.qxgmat.data.dao.entity.ExaminationStruct">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="id" jdbcType="INTEGER" property="id" />
  9. <result column="title_zh" jdbcType="VARCHAR" property="titleZh" />
  10. <result column="title_en" jdbcType="VARCHAR" property="titleEn" />
  11. <result column="parent_id" jdbcType="INTEGER" property="parentId" />
  12. <result column="sort" jdbcType="INTEGER" property="sort" />
  13. <result column="level" jdbcType="INTEGER" property="level" />
  14. <result column="is_adapt" jdbcType="INTEGER" property="isAdapt" />
  15. <result column="question_status" jdbcType="INTEGER" property="questionStatus" />
  16. <result column="extend" jdbcType="VARCHAR" property="extend" />
  17. </resultMap>
  18. <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.qxgmat.data.dao.entity.ExaminationStruct">
  19. <!--
  20. WARNING - @mbg.generated
  21. -->
  22. <result column="description" jdbcType="LONGVARCHAR" property="description" />
  23. </resultMap>
  24. <sql id="Base_Column_List">
  25. <!--
  26. WARNING - @mbg.generated
  27. -->
  28. `id`, `title_zh`, `title_en`, `parent_id`, `sort`, `level`, `is_adapt`, `question_status`,
  29. `extend`
  30. </sql>
  31. <sql id="Blob_Column_List">
  32. <!--
  33. WARNING - @mbg.generated
  34. -->
  35. `description`
  36. </sql>
  37. </mapper>