2020-11-19 10:07:10 +08:00
|
|
|
<?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">
|
2020-11-19 18:28:54 +08:00
|
|
|
<mapper namespace="club.joylink.rtss.dao.LsLessonVersionDAO">
|
|
|
|
<resultMap id="BaseResultMap" type="club.joylink.rtss.entity.LsLessonVersion">
|
2020-11-19 10:07:10 +08:00
|
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
|
|
<result column="lesson_id" jdbcType="BIGINT" property="lessonId" />
|
|
|
|
<result column="version" jdbcType="VARCHAR" property="version" />
|
|
|
|
<result column="creator_id" jdbcType="BIGINT" property="creatorId" />
|
|
|
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
|
|
</resultMap>
|
|
|
|
<sql id="Example_Where_Clause">
|
|
|
|
<where>
|
|
|
|
<foreach collection="oredCriteria" item="criteria" separator="or">
|
|
|
|
<if test="criteria.valid">
|
|
|
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
|
|
|
<foreach collection="criteria.criteria" item="criterion">
|
|
|
|
<choose>
|
|
|
|
<when test="criterion.noValue">
|
|
|
|
and ${criterion.condition}
|
|
|
|
</when>
|
|
|
|
<when test="criterion.singleValue">
|
|
|
|
and ${criterion.condition} #{criterion.value}
|
|
|
|
</when>
|
|
|
|
<when test="criterion.betweenValue">
|
|
|
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
|
|
</when>
|
|
|
|
<when test="criterion.listValue">
|
|
|
|
and ${criterion.condition}
|
|
|
|
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
|
#{listItem}
|
|
|
|
</foreach>
|
|
|
|
</when>
|
|
|
|
</choose>
|
|
|
|
</foreach>
|
|
|
|
</trim>
|
|
|
|
</if>
|
|
|
|
</foreach>
|
|
|
|
</where>
|
|
|
|
</sql>
|
|
|
|
<sql id="Update_By_Example_Where_Clause">
|
|
|
|
<where>
|
|
|
|
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
|
|
|
<if test="criteria.valid">
|
|
|
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
|
|
|
<foreach collection="criteria.criteria" item="criterion">
|
|
|
|
<choose>
|
|
|
|
<when test="criterion.noValue">
|
|
|
|
and ${criterion.condition}
|
|
|
|
</when>
|
|
|
|
<when test="criterion.singleValue">
|
|
|
|
and ${criterion.condition} #{criterion.value}
|
|
|
|
</when>
|
|
|
|
<when test="criterion.betweenValue">
|
|
|
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
|
|
</when>
|
|
|
|
<when test="criterion.listValue">
|
|
|
|
and ${criterion.condition}
|
|
|
|
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
|
#{listItem}
|
|
|
|
</foreach>
|
|
|
|
</when>
|
|
|
|
</choose>
|
|
|
|
</foreach>
|
|
|
|
</trim>
|
|
|
|
</if>
|
|
|
|
</foreach>
|
|
|
|
</where>
|
|
|
|
</sql>
|
|
|
|
<sql id="Base_Column_List">
|
|
|
|
id, lesson_id, version, creator_id, update_time
|
|
|
|
</sql>
|
2020-11-19 18:28:54 +08:00
|
|
|
<select id="selectByExample" parameterType="club.joylink.rtss.entity.LsLessonVersionExample" resultMap="BaseResultMap">
|
2020-11-19 10:07:10 +08:00
|
|
|
select
|
|
|
|
<if test="distinct">
|
|
|
|
distinct
|
|
|
|
</if>
|
|
|
|
<include refid="Base_Column_List" />
|
|
|
|
from ls_lesson_version
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
<if test="orderByClause != null">
|
|
|
|
order by ${orderByClause}
|
|
|
|
</if>
|
|
|
|
<if test="limit != null">
|
|
|
|
<if test="offset != null">
|
|
|
|
limit ${offset}, ${limit}
|
|
|
|
</if>
|
|
|
|
<if test="offset == null">
|
|
|
|
limit ${limit}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
</select>
|
|
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
|
|
select
|
|
|
|
<include refid="Base_Column_List" />
|
|
|
|
from ls_lesson_version
|
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
|
</select>
|
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
|
|
delete from ls_lesson_version
|
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
|
</delete>
|
2020-11-19 18:28:54 +08:00
|
|
|
<delete id="deleteByExample" parameterType="club.joylink.rtss.entity.LsLessonVersionExample">
|
2020-11-19 10:07:10 +08:00
|
|
|
delete from ls_lesson_version
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</delete>
|
2020-11-19 18:28:54 +08:00
|
|
|
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="club.joylink.rtss.entity.LsLessonVersion" useGeneratedKeys="true">
|
2020-11-19 10:07:10 +08:00
|
|
|
insert into ls_lesson_version (lesson_id, version, creator_id,
|
|
|
|
update_time)
|
|
|
|
values (#{lessonId,jdbcType=BIGINT}, #{version,jdbcType=VARCHAR}, #{creatorId,jdbcType=BIGINT},
|
|
|
|
#{updateTime,jdbcType=TIMESTAMP})
|
|
|
|
</insert>
|
2020-11-19 18:28:54 +08:00
|
|
|
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="club.joylink.rtss.entity.LsLessonVersion" useGeneratedKeys="true">
|
2020-11-19 10:07:10 +08:00
|
|
|
insert into ls_lesson_version
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="lessonId != null">
|
|
|
|
lesson_id,
|
|
|
|
</if>
|
|
|
|
<if test="version != null">
|
|
|
|
version,
|
|
|
|
</if>
|
|
|
|
<if test="creatorId != null">
|
|
|
|
creator_id,
|
|
|
|
</if>
|
|
|
|
<if test="updateTime != null">
|
|
|
|
update_time,
|
|
|
|
</if>
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="lessonId != null">
|
|
|
|
#{lessonId,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
<if test="version != null">
|
|
|
|
#{version,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="creatorId != null">
|
|
|
|
#{creatorId,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
<if test="updateTime != null">
|
|
|
|
#{updateTime,jdbcType=TIMESTAMP},
|
|
|
|
</if>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
2020-11-19 18:28:54 +08:00
|
|
|
<select id="countByExample" parameterType="club.joylink.rtss.entity.LsLessonVersionExample" resultType="java.lang.Long">
|
2020-11-19 10:07:10 +08:00
|
|
|
select count(*) from ls_lesson_version
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</select>
|
|
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
|
|
update ls_lesson_version
|
|
|
|
<set>
|
|
|
|
<if test="record.id != null">
|
|
|
|
id = #{record.id,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
<if test="record.lessonId != null">
|
|
|
|
lesson_id = #{record.lessonId,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
<if test="record.version != null">
|
|
|
|
version = #{record.version,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="record.creatorId != null">
|
|
|
|
creator_id = #{record.creatorId,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
<if test="record.updateTime != null">
|
|
|
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
|
|
|
</if>
|
|
|
|
</set>
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</update>
|
|
|
|
<update id="updateByExample" parameterType="map">
|
|
|
|
update ls_lesson_version
|
|
|
|
set id = #{record.id,jdbcType=BIGINT},
|
|
|
|
lesson_id = #{record.lessonId,jdbcType=BIGINT},
|
|
|
|
version = #{record.version,jdbcType=VARCHAR},
|
|
|
|
creator_id = #{record.creatorId,jdbcType=BIGINT},
|
|
|
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</update>
|
2020-11-19 18:28:54 +08:00
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="club.joylink.rtss.entity.LsLessonVersion">
|
2020-11-19 10:07:10 +08:00
|
|
|
update ls_lesson_version
|
|
|
|
<set>
|
|
|
|
<if test="lessonId != null">
|
|
|
|
lesson_id = #{lessonId,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
<if test="version != null">
|
|
|
|
version = #{version,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="creatorId != null">
|
|
|
|
creator_id = #{creatorId,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
<if test="updateTime != null">
|
|
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
|
</if>
|
|
|
|
</set>
|
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
|
</update>
|
2020-11-19 18:28:54 +08:00
|
|
|
<update id="updateByPrimaryKey" parameterType="club.joylink.rtss.entity.LsLessonVersion">
|
2020-11-19 10:07:10 +08:00
|
|
|
update ls_lesson_version
|
|
|
|
set lesson_id = #{lessonId,jdbcType=BIGINT},
|
|
|
|
version = #{version,jdbcType=VARCHAR},
|
|
|
|
creator_id = #{creatorId,jdbcType=BIGINT},
|
|
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
|
</update>
|
|
|
|
</mapper>
|