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

228 lines
8.4 KiB
XML
Raw Normal View History

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">
<mapper namespace="com.joylink.ms.dao.ExamDefinitionRulesDAO">
<resultMap id="BaseResultMap" type="com.joylink.ms.entity.ExamDefinitionRules">
<id column="id" jdbcType="BIGINT" property="id" />
<result column="exam_id" jdbcType="BIGINT" property="examId" />
<result column="training_type" jdbcType="VARCHAR" property="trainingType" />
<result column="num" jdbcType="INTEGER" property="num" />
<result column="point" jdbcType="INTEGER" property="point" />
<result column="operate_type" jdbcType="VARCHAR" property="operateType" />
</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, exam_id, training_type, num, point, operate_type
</sql>
<select id="selectByExample" parameterType="com.joylink.ms.entity.ExamDefinitionRulesExample" resultMap="BaseResultMap">
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from exam_definition_rules
<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 exam_definition_rules
where id = #{id,jdbcType=BIGINT}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from exam_definition_rules
where id = #{id,jdbcType=BIGINT}
</delete>
<delete id="deleteByExample" parameterType="com.joylink.ms.entity.ExamDefinitionRulesExample">
delete from exam_definition_rules
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.joylink.ms.entity.ExamDefinitionRules" useGeneratedKeys="true">
insert into exam_definition_rules (exam_id, training_type, num,
point, operate_type)
values (#{examId,jdbcType=BIGINT}, #{trainingType,jdbcType=VARCHAR}, #{num,jdbcType=INTEGER},
#{point,jdbcType=INTEGER}, #{operateType,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.joylink.ms.entity.ExamDefinitionRules" useGeneratedKeys="true">
insert into exam_definition_rules
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="examId != null">
exam_id,
</if>
<if test="trainingType != null">
training_type,
</if>
<if test="num != null">
num,
</if>
<if test="point != null">
point,
</if>
<if test="operateType != null">
operate_type,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="examId != null">
#{examId,jdbcType=BIGINT},
</if>
<if test="trainingType != null">
#{trainingType,jdbcType=VARCHAR},
</if>
<if test="num != null">
#{num,jdbcType=INTEGER},
</if>
<if test="point != null">
#{point,jdbcType=INTEGER},
</if>
<if test="operateType != null">
#{operateType,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.joylink.ms.entity.ExamDefinitionRulesExample" resultType="java.lang.Long">
select count(*) from exam_definition_rules
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
update exam_definition_rules
<set>
<if test="record.id != null">
id = #{record.id,jdbcType=BIGINT},
</if>
<if test="record.examId != null">
exam_id = #{record.examId,jdbcType=BIGINT},
</if>
<if test="record.trainingType != null">
training_type = #{record.trainingType,jdbcType=VARCHAR},
</if>
<if test="record.num != null">
num = #{record.num,jdbcType=INTEGER},
</if>
<if test="record.point != null">
point = #{record.point,jdbcType=INTEGER},
</if>
<if test="record.operateType != null">
operate_type = #{record.operateType,jdbcType=VARCHAR},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
update exam_definition_rules
set id = #{record.id,jdbcType=BIGINT},
exam_id = #{record.examId,jdbcType=BIGINT},
training_type = #{record.trainingType,jdbcType=VARCHAR},
num = #{record.num,jdbcType=INTEGER},
point = #{record.point,jdbcType=INTEGER},
operate_type = #{record.operateType,jdbcType=VARCHAR}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="com.joylink.ms.entity.ExamDefinitionRules">
update exam_definition_rules
<set>
<if test="examId != null">
exam_id = #{examId,jdbcType=BIGINT},
</if>
<if test="trainingType != null">
training_type = #{trainingType,jdbcType=VARCHAR},
</if>
<if test="num != null">
num = #{num,jdbcType=INTEGER},
</if>
<if test="point != null">
point = #{point,jdbcType=INTEGER},
</if>
<if test="operateType != null">
operate_type = #{operateType,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update id="updateByPrimaryKey" parameterType="com.joylink.ms.entity.ExamDefinitionRules">
update exam_definition_rules
set exam_id = #{examId,jdbcType=BIGINT},
training_type = #{trainingType,jdbcType=VARCHAR},
num = #{num,jdbcType=INTEGER},
point = #{point,jdbcType=INTEGER},
operate_type = #{operateType,jdbcType=VARCHAR}
where id = #{id,jdbcType=BIGINT}
</update>
</mapper>