228 lines
8.2 KiB
XML
228 lines
8.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="club.joylink.rtss.dao.LicenseDAO">
|
|
<resultMap id="BaseResultMap" type="club.joylink.rtss.entity.License">
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="name" jdbcType="VARCHAR" property="name" />
|
|
<result column="over_time" jdbcType="TIMESTAMP" property="overTime" />
|
|
<result column="secret_key" jdbcType="VARCHAR" property="secretKey" />
|
|
<result column="license" jdbcType="VARCHAR" property="license" />
|
|
<result column="available" jdbcType="TINYINT" property="available" />
|
|
</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, `name`, over_time, secret_key, license, available
|
|
</sql>
|
|
<select id="selectByExample" parameterType="club.joylink.rtss.entity.LicenseExample" resultMap="BaseResultMap">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from license
|
|
<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 license
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
delete from license
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="club.joylink.rtss.entity.LicenseExample">
|
|
delete from license
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="club.joylink.rtss.entity.License" useGeneratedKeys="true">
|
|
insert into license (`name`, over_time, secret_key,
|
|
license, available)
|
|
values (#{name,jdbcType=VARCHAR}, #{overTime,jdbcType=TIMESTAMP}, #{secretKey,jdbcType=VARCHAR},
|
|
#{license,jdbcType=VARCHAR}, #{available,jdbcType=TINYINT})
|
|
</insert>
|
|
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="club.joylink.rtss.entity.License" useGeneratedKeys="true">
|
|
insert into license
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="name != null">
|
|
`name`,
|
|
</if>
|
|
<if test="overTime != null">
|
|
over_time,
|
|
</if>
|
|
<if test="secretKey != null">
|
|
secret_key,
|
|
</if>
|
|
<if test="license != null">
|
|
license,
|
|
</if>
|
|
<if test="available != null">
|
|
available,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="name != null">
|
|
#{name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="overTime != null">
|
|
#{overTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="secretKey != null">
|
|
#{secretKey,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="license != null">
|
|
#{license,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="available != null">
|
|
#{available,jdbcType=TINYINT},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="club.joylink.rtss.entity.LicenseExample" resultType="java.lang.Long">
|
|
select count(*) from license
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
update license
|
|
<set>
|
|
<if test="record.id != null">
|
|
id = #{record.id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.name != null">
|
|
`name` = #{record.name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.overTime != null">
|
|
over_time = #{record.overTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="record.secretKey != null">
|
|
secret_key = #{record.secretKey,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.license != null">
|
|
license = #{record.license,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.available != null">
|
|
available = #{record.available,jdbcType=TINYINT},
|
|
</if>
|
|
</set>
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map">
|
|
update license
|
|
set id = #{record.id,jdbcType=BIGINT},
|
|
`name` = #{record.name,jdbcType=VARCHAR},
|
|
over_time = #{record.overTime,jdbcType=TIMESTAMP},
|
|
secret_key = #{record.secretKey,jdbcType=VARCHAR},
|
|
license = #{record.license,jdbcType=VARCHAR},
|
|
available = #{record.available,jdbcType=TINYINT}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="club.joylink.rtss.entity.License">
|
|
update license
|
|
<set>
|
|
<if test="name != null">
|
|
`name` = #{name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="overTime != null">
|
|
over_time = #{overTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="secretKey != null">
|
|
secret_key = #{secretKey,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="license != null">
|
|
license = #{license,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="available != null">
|
|
available = #{available,jdbcType=TINYINT},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="club.joylink.rtss.entity.License">
|
|
update license
|
|
set `name` = #{name,jdbcType=VARCHAR},
|
|
over_time = #{overTime,jdbcType=TIMESTAMP},
|
|
secret_key = #{secretKey,jdbcType=VARCHAR},
|
|
license = #{license,jdbcType=VARCHAR},
|
|
available = #{available,jdbcType=TINYINT}
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
</mapper> |