17 lines
653 B
XML
17 lines
653 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!DOCTYPE mapper
|
||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
<mapper namespace="com.guwan.backend.mapper.UserCourseRegistrationMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.guwan.backend.pojo.entity.UserCourseRegistration">
|
||
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
||
|
<result property="userId" column="user_id" jdbcType="INTEGER"/>
|
||
|
<result property="courseId" column="course_id" jdbcType="INTEGER"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,user_id,course_id
|
||
|
</sql>
|
||
|
</mapper>
|