RankMapper.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.RankMapper">
  4. <resultMap id="BaseResultMap" type="com.qxgmat.data.dao.entity.Rank">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="id" jdbcType="INTEGER" property="id" />
  9. <result column="total_score" jdbcType="INTEGER" property="totalScore" />
  10. <result column="total_rank" jdbcType="INTEGER" property="totalRank" />
  11. <result column="quant_score" jdbcType="INTEGER" property="quantScore" />
  12. <result column="quant_rank" jdbcType="INTEGER" property="quantRank" />
  13. <result column="verbal_score" jdbcType="INTEGER" property="verbalScore" />
  14. <result column="verbal_rank" jdbcType="INTEGER" property="verbalRank" />
  15. <result column="ir_score" jdbcType="INTEGER" property="irScore" />
  16. <result column="ir_rank" jdbcType="INTEGER" property="irRank" />
  17. </resultMap>
  18. <sql id="Base_Column_List">
  19. <!--
  20. WARNING - @mbg.generated
  21. -->
  22. `id`, `total_score`, `total_rank`, `quant_score`, `quant_rank`, `verbal_score`, `verbal_rank`,
  23. `ir_score`, `ir_rank`
  24. </sql>
  25. </mapper>