mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-07-27 21:09:37 +08:00
25 lines
1.2 KiB
XML
25 lines
1.2 KiB
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="xyz.playedu.api.mapper.CourseMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="xyz.playedu.api.domain.Course">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="title" column="title" jdbcType="VARCHAR"/>
|
|
<result property="thumb" column="thumb" jdbcType="VARCHAR"/>
|
|
<result property="charge" column="charge" jdbcType="INTEGER"/>
|
|
<result property="classHour" column="class_hour" jdbcType="INTEGER"/>
|
|
<result property="isShow" column="is_show" jdbcType="TINYINT"/>
|
|
<result property="createdAt" column="created_at" jdbcType="TIMESTAMP"/>
|
|
<result property="updatedAt" column="updated_at" jdbcType="TIMESTAMP"/>
|
|
<result property="deletedAt" column="deleted_at" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,title,thumb,
|
|
charge,class_hour,is_show,
|
|
created_at,updated_at,deleted_at
|
|
</sql>
|
|
</mapper>
|