rt-sim-training-service/src/main/resources/mybatis/mapper/LsRelChapterTrainingDAO.xml

228 lines
8.5 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="club.joylink.rtss.dao.LsRelChapterTrainingDAO">
<resultMap id="BaseResultMap" type="club.joylink.rtss.entity.LsRelChapterTraining">
<id column="id" jdbcType="BIGINT" property="id" />
<result column="lesson_id" jdbcType="BIGINT" property="lessonId" />
<result column="chapter_id" jdbcType="BIGINT" property="chapterId" />
<result column="training_id" jdbcType="BIGINT" property="trainingId" />
<result column="order_num" jdbcType="INTEGER" property="orderNum" />
<result column="trial" jdbcType="BIT" property="trial" />
</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, chapter_id, training_id, order_num, trial
</sql>
<select id="selectByExample" parameterType="club.joylink.rtss.entity.LsRelChapterTrainingExample" resultMap="BaseResultMap">
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from ls_rel_chapter_training
<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_rel_chapter_training
where id = #{id,jdbcType=BIGINT}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from ls_rel_chapter_training
where id = #{id,jdbcType=BIGINT}
</delete>
<delete id="deleteByExample" parameterType="club.joylink.rtss.entity.LsRelChapterTrainingExample">
delete from ls_rel_chapter_training
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="club.joylink.rtss.entity.LsRelChapterTraining" useGeneratedKeys="true">
insert into ls_rel_chapter_training (lesson_id, chapter_id, training_id,
order_num, trial)
values (#{lessonId,jdbcType=BIGINT}, #{chapterId,jdbcType=BIGINT}, #{trainingId,jdbcType=BIGINT},
#{orderNum,jdbcType=INTEGER}, #{trial,jdbcType=BIT})
</insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="club.joylink.rtss.entity.LsRelChapterTraining" useGeneratedKeys="true">
insert into ls_rel_chapter_training
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="lessonId != null">
lesson_id,
</if>
<if test="chapterId != null">
chapter_id,
</if>
<if test="trainingId != null">
training_id,
</if>
<if test="orderNum != null">
order_num,
</if>
<if test="trial != null">
trial,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="lessonId != null">
#{lessonId,jdbcType=BIGINT},
</if>
<if test="chapterId != null">
#{chapterId,jdbcType=BIGINT},
</if>
<if test="trainingId != null">
#{trainingId,jdbcType=BIGINT},
</if>
<if test="orderNum != null">
#{orderNum,jdbcType=INTEGER},
</if>
<if test="trial != null">
#{trial,jdbcType=BIT},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="club.joylink.rtss.entity.LsRelChapterTrainingExample" resultType="java.lang.Long">
select count(*) from ls_rel_chapter_training
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
update ls_rel_chapter_training
<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.chapterId != null">
chapter_id = #{record.chapterId,jdbcType=BIGINT},
</if>
<if test="record.trainingId != null">
training_id = #{record.trainingId,jdbcType=BIGINT},
</if>
<if test="record.orderNum != null">
order_num = #{record.orderNum,jdbcType=INTEGER},
</if>
<if test="record.trial != null">
trial = #{record.trial,jdbcType=BIT},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
update ls_rel_chapter_training
set id = #{record.id,jdbcType=BIGINT},
lesson_id = #{record.lessonId,jdbcType=BIGINT},
chapter_id = #{record.chapterId,jdbcType=BIGINT},
training_id = #{record.trainingId,jdbcType=BIGINT},
order_num = #{record.orderNum,jdbcType=INTEGER},
trial = #{record.trial,jdbcType=BIT}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="club.joylink.rtss.entity.LsRelChapterTraining">
update ls_rel_chapter_training
<set>
<if test="lessonId != null">
lesson_id = #{lessonId,jdbcType=BIGINT},
</if>
<if test="chapterId != null">
chapter_id = #{chapterId,jdbcType=BIGINT},
</if>
<if test="trainingId != null">
training_id = #{trainingId,jdbcType=BIGINT},
</if>
<if test="orderNum != null">
order_num = #{orderNum,jdbcType=INTEGER},
</if>
<if test="trial != null">
trial = #{trial,jdbcType=BIT},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update id="updateByPrimaryKey" parameterType="club.joylink.rtss.entity.LsRelChapterTraining">
update ls_rel_chapter_training
set lesson_id = #{lessonId,jdbcType=BIGINT},
chapter_id = #{chapterId,jdbcType=BIGINT},
training_id = #{trainingId,jdbcType=BIGINT},
order_num = #{orderNum,jdbcType=INTEGER},
trial = #{trial,jdbcType=BIT}
where id = #{id,jdbcType=BIGINT}
</update>
</mapper>