forked from github/dataease
292 lines
10 KiB
XML
292 lines
10 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="io.dataease.base.mapper.JarConfigMapper">
|
||
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.JarConfig">
|
||
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
||
|
<result column="name" jdbcType="VARCHAR" property="name" />
|
||
|
<result column="file_name" jdbcType="VARCHAR" property="fileName" />
|
||
|
<result column="creator" jdbcType="VARCHAR" property="creator" />
|
||
|
<result column="modifier" jdbcType="VARCHAR" property="modifier" />
|
||
|
<result column="path" jdbcType="VARCHAR" property="path" />
|
||
|
<result column="enable" jdbcType="BIT" property="enable" />
|
||
|
<result column="description" jdbcType="VARCHAR" property="description" />
|
||
|
<result column="create_time" jdbcType="BIGINT" property="createTime" />
|
||
|
<result column="update_time" jdbcType="BIGINT" 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, `name`, file_name, creator, modifier, `path`, `enable`, description, create_time,
|
||
|
update_time
|
||
|
</sql>
|
||
|
<select id="selectByExample" parameterType="io.dataease.base.domain.JarConfigExample" resultMap="BaseResultMap">
|
||
|
select
|
||
|
<if test="distinct">
|
||
|
distinct
|
||
|
</if>
|
||
|
<include refid="Base_Column_List" />
|
||
|
from jar_config
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
<if test="orderByClause != null">
|
||
|
order by ${orderByClause}
|
||
|
</if>
|
||
|
</select>
|
||
|
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||
|
select
|
||
|
<include refid="Base_Column_List" />
|
||
|
from jar_config
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</select>
|
||
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||
|
delete from jar_config
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</delete>
|
||
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.JarConfigExample">
|
||
|
delete from jar_config
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
</delete>
|
||
|
<insert id="insert" parameterType="io.dataease.base.domain.JarConfig">
|
||
|
insert into jar_config (id, `name`, file_name,
|
||
|
creator, modifier, `path`,
|
||
|
`enable`, description, create_time,
|
||
|
update_time)
|
||
|
values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{fileName,jdbcType=VARCHAR},
|
||
|
#{creator,jdbcType=VARCHAR}, #{modifier,jdbcType=VARCHAR}, #{path,jdbcType=VARCHAR},
|
||
|
#{enable,jdbcType=BIT}, #{description,jdbcType=VARCHAR}, #{createTime,jdbcType=BIGINT},
|
||
|
#{updateTime,jdbcType=BIGINT})
|
||
|
</insert>
|
||
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.JarConfig">
|
||
|
insert into jar_config
|
||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
<if test="id != null">
|
||
|
id,
|
||
|
</if>
|
||
|
<if test="name != null">
|
||
|
`name`,
|
||
|
</if>
|
||
|
<if test="fileName != null">
|
||
|
file_name,
|
||
|
</if>
|
||
|
<if test="creator != null">
|
||
|
creator,
|
||
|
</if>
|
||
|
<if test="modifier != null">
|
||
|
modifier,
|
||
|
</if>
|
||
|
<if test="path != null">
|
||
|
`path`,
|
||
|
</if>
|
||
|
<if test="enable != null">
|
||
|
`enable`,
|
||
|
</if>
|
||
|
<if test="description != null">
|
||
|
description,
|
||
|
</if>
|
||
|
<if test="createTime != null">
|
||
|
create_time,
|
||
|
</if>
|
||
|
<if test="updateTime != null">
|
||
|
update_time,
|
||
|
</if>
|
||
|
</trim>
|
||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
<if test="id != null">
|
||
|
#{id,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="name != null">
|
||
|
#{name,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="fileName != null">
|
||
|
#{fileName,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="creator != null">
|
||
|
#{creator,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="modifier != null">
|
||
|
#{modifier,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="path != null">
|
||
|
#{path,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="enable != null">
|
||
|
#{enable,jdbcType=BIT},
|
||
|
</if>
|
||
|
<if test="description != null">
|
||
|
#{description,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="createTime != null">
|
||
|
#{createTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
<if test="updateTime != null">
|
||
|
#{updateTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
</trim>
|
||
|
</insert>
|
||
|
<select id="countByExample" parameterType="io.dataease.base.domain.JarConfigExample" resultType="java.lang.Long">
|
||
|
select count(*) from jar_config
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
</select>
|
||
|
<update id="updateByExampleSelective" parameterType="map">
|
||
|
update jar_config
|
||
|
<set>
|
||
|
<if test="record.id != null">
|
||
|
id = #{record.id,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.name != null">
|
||
|
`name` = #{record.name,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.fileName != null">
|
||
|
file_name = #{record.fileName,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.creator != null">
|
||
|
creator = #{record.creator,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.modifier != null">
|
||
|
modifier = #{record.modifier,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.path != null">
|
||
|
`path` = #{record.path,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.enable != null">
|
||
|
`enable` = #{record.enable,jdbcType=BIT},
|
||
|
</if>
|
||
|
<if test="record.description != null">
|
||
|
description = #{record.description,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.createTime != null">
|
||
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
<if test="record.updateTime != null">
|
||
|
update_time = #{record.updateTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
</set>
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByExample" parameterType="map">
|
||
|
update jar_config
|
||
|
set id = #{record.id,jdbcType=VARCHAR},
|
||
|
`name` = #{record.name,jdbcType=VARCHAR},
|
||
|
file_name = #{record.fileName,jdbcType=VARCHAR},
|
||
|
creator = #{record.creator,jdbcType=VARCHAR},
|
||
|
modifier = #{record.modifier,jdbcType=VARCHAR},
|
||
|
`path` = #{record.path,jdbcType=VARCHAR},
|
||
|
`enable` = #{record.enable,jdbcType=BIT},
|
||
|
description = #{record.description,jdbcType=VARCHAR},
|
||
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
||
|
update_time = #{record.updateTime,jdbcType=BIGINT}
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.JarConfig">
|
||
|
update jar_config
|
||
|
<set>
|
||
|
<if test="name != null">
|
||
|
`name` = #{name,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="fileName != null">
|
||
|
file_name = #{fileName,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="creator != null">
|
||
|
creator = #{creator,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="modifier != null">
|
||
|
modifier = #{modifier,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="path != null">
|
||
|
`path` = #{path,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="enable != null">
|
||
|
`enable` = #{enable,jdbcType=BIT},
|
||
|
</if>
|
||
|
<if test="description != null">
|
||
|
description = #{description,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="createTime != null">
|
||
|
create_time = #{createTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
<if test="updateTime != null">
|
||
|
update_time = #{updateTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
</set>
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</update>
|
||
|
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.JarConfig">
|
||
|
update jar_config
|
||
|
set `name` = #{name,jdbcType=VARCHAR},
|
||
|
file_name = #{fileName,jdbcType=VARCHAR},
|
||
|
creator = #{creator,jdbcType=VARCHAR},
|
||
|
modifier = #{modifier,jdbcType=VARCHAR},
|
||
|
`path` = #{path,jdbcType=VARCHAR},
|
||
|
`enable` = #{enable,jdbcType=BIT},
|
||
|
description = #{description,jdbcType=VARCHAR},
|
||
|
create_time = #{createTime,jdbcType=BIGINT},
|
||
|
update_time = #{updateTime,jdbcType=BIGINT}
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</update>
|
||
|
</mapper>
|