forked from github/dataease
195 lines
6.9 KiB
XML
195 lines
6.9 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.FileContentMapper">
|
||
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.FileContent">
|
||
|
<id column="file_id" jdbcType="VARCHAR" property="fileId" />
|
||
|
</resultMap>
|
||
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="io.dataease.base.domain.FileContent">
|
||
|
<result column="file" jdbcType="LONGVARBINARY" property="file" />
|
||
|
</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">
|
||
|
file_id
|
||
|
</sql>
|
||
|
<sql id="Blob_Column_List">
|
||
|
file
|
||
|
</sql>
|
||
|
<select id="selectByExampleWithBLOBs" parameterType="io.dataease.base.domain.FileContentExample" resultMap="ResultMapWithBLOBs">
|
||
|
select
|
||
|
<if test="distinct">
|
||
|
distinct
|
||
|
</if>
|
||
|
<include refid="Base_Column_List" />
|
||
|
,
|
||
|
<include refid="Blob_Column_List" />
|
||
|
from file_content
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
<if test="orderByClause != null">
|
||
|
order by ${orderByClause}
|
||
|
</if>
|
||
|
</select>
|
||
|
<select id="selectByExample" parameterType="io.dataease.base.domain.FileContentExample" resultMap="BaseResultMap">
|
||
|
select
|
||
|
<if test="distinct">
|
||
|
distinct
|
||
|
</if>
|
||
|
<include refid="Base_Column_List" />
|
||
|
from file_content
|
||
|
<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="ResultMapWithBLOBs">
|
||
|
select
|
||
|
<include refid="Base_Column_List" />
|
||
|
,
|
||
|
<include refid="Blob_Column_List" />
|
||
|
from file_content
|
||
|
where file_id = #{fileId,jdbcType=VARCHAR}
|
||
|
</select>
|
||
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||
|
delete from file_content
|
||
|
where file_id = #{fileId,jdbcType=VARCHAR}
|
||
|
</delete>
|
||
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.FileContentExample">
|
||
|
delete from file_content
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
</delete>
|
||
|
<insert id="insert" parameterType="io.dataease.base.domain.FileContent">
|
||
|
insert into file_content (file_id, file)
|
||
|
values (#{fileId,jdbcType=VARCHAR}, #{file,jdbcType=LONGVARBINARY})
|
||
|
</insert>
|
||
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.FileContent">
|
||
|
insert into file_content
|
||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
<if test="fileId != null">
|
||
|
file_id,
|
||
|
</if>
|
||
|
<if test="file != null">
|
||
|
file,
|
||
|
</if>
|
||
|
</trim>
|
||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
<if test="fileId != null">
|
||
|
#{fileId,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="file != null">
|
||
|
#{file,jdbcType=LONGVARBINARY},
|
||
|
</if>
|
||
|
</trim>
|
||
|
</insert>
|
||
|
<select id="countByExample" parameterType="io.dataease.base.domain.FileContentExample" resultType="java.lang.Long">
|
||
|
select count(*) from file_content
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
</select>
|
||
|
<update id="updateByExampleSelective" parameterType="map">
|
||
|
update file_content
|
||
|
<set>
|
||
|
<if test="record.fileId != null">
|
||
|
file_id = #{record.fileId,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.file != null">
|
||
|
file = #{record.file,jdbcType=LONGVARBINARY},
|
||
|
</if>
|
||
|
</set>
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByExampleWithBLOBs" parameterType="map">
|
||
|
update file_content
|
||
|
set file_id = #{record.fileId,jdbcType=VARCHAR},
|
||
|
file = #{record.file,jdbcType=LONGVARBINARY}
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByExample" parameterType="map">
|
||
|
update file_content
|
||
|
set file_id = #{record.fileId,jdbcType=VARCHAR}
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.FileContent">
|
||
|
update file_content
|
||
|
<set>
|
||
|
<if test="file != null">
|
||
|
file = #{file,jdbcType=LONGVARBINARY},
|
||
|
</if>
|
||
|
</set>
|
||
|
where file_id = #{fileId,jdbcType=VARCHAR}
|
||
|
</update>
|
||
|
<update id="updateByPrimaryKeyWithBLOBs" parameterType="io.dataease.base.domain.FileContent">
|
||
|
update file_content
|
||
|
set file = #{file,jdbcType=LONGVARBINARY}
|
||
|
where file_id = #{fileId,jdbcType=VARCHAR}
|
||
|
</update>
|
||
|
</mapper>
|