BustripProjectMapper.xml 932 B

123456789101112131415161718192021
  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.management.platform.mapper.BustripProjectMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.management.platform.entity.BustripProject">
  6. <id column="id" property="id" />
  7. <result column="bustrip_id" property="bustripId" />
  8. <result column="project_id" property="projectId" />
  9. <result column="start_date" property="startDate" />
  10. <result column="end_date" property="endDate" />
  11. <result column="degree_id" property="degreeId" />
  12. <result column="degree_name" property="degreeName" />
  13. </resultMap>
  14. <!-- 通用查询结果列 -->
  15. <sql id="Base_Column_List">
  16. id, bustrip_id, project_id, start_date, end_date, degree_id, degree_name
  17. </sql>
  18. </mapper>