ExamArrangementGuideMapper.xml 814 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.zhongzheng.system.mapper.ExamArrangementGuideMapper">
  6. <resultMap type="com.zhongzheng.modules.exam.domain.ExamArrangementGuide" id="ExamArrangementGuideResult">
  7. <result property="id" column="id"/>
  8. <result property="examTypeId" column="exam_type_id"/>
  9. <result property="examType" column="exam_type"/>
  10. <result property="typeNum" column="type_num"/>
  11. <result property="typeText" column="type_text"/>
  12. <result property="status" column="status"/>
  13. <result property="createTime" column="create_time"/>
  14. <result property="updateTime" column="update_time"/>
  15. </resultMap>
  16. </mapper>