forked from github/dataease
270 lines
9.9 KiB
XML
270 lines
9.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.PanelPdfTemplateMapper">
|
||
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.PanelPdfTemplate">
|
||
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
||
|
<result column="name" jdbcType="VARCHAR" property="name" />
|
||
|
<result column="create_time" jdbcType="BIGINT" property="createTime" />
|
||
|
<result column="create_user" jdbcType="VARCHAR" property="createUser" />
|
||
|
<result column="sort" jdbcType="INTEGER" property="sort" />
|
||
|
</resultMap>
|
||
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="io.dataease.base.domain.PanelPdfTemplate">
|
||
|
<result column="template_content" jdbcType="LONGVARCHAR" property="templateContent" />
|
||
|
</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`, create_time, create_user, sort
|
||
|
</sql>
|
||
|
<sql id="Blob_Column_List">
|
||
|
template_content
|
||
|
</sql>
|
||
|
<select id="selectByExampleWithBLOBs" parameterType="io.dataease.base.domain.PanelPdfTemplateExample" resultMap="ResultMapWithBLOBs">
|
||
|
select
|
||
|
<if test="distinct">
|
||
|
distinct
|
||
|
</if>
|
||
|
<include refid="Base_Column_List" />
|
||
|
,
|
||
|
<include refid="Blob_Column_List" />
|
||
|
from panel_pdf_template
|
||
|
<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.PanelPdfTemplateExample" resultMap="BaseResultMap">
|
||
|
select
|
||
|
<if test="distinct">
|
||
|
distinct
|
||
|
</if>
|
||
|
<include refid="Base_Column_List" />
|
||
|
from panel_pdf_template
|
||
|
<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 panel_pdf_template
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</select>
|
||
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||
|
delete from panel_pdf_template
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</delete>
|
||
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.PanelPdfTemplateExample">
|
||
|
delete from panel_pdf_template
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
</delete>
|
||
|
<insert id="insert" parameterType="io.dataease.base.domain.PanelPdfTemplate">
|
||
|
insert into panel_pdf_template (id, `name`, create_time,
|
||
|
create_user, sort, template_content
|
||
|
)
|
||
|
values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{createTime,jdbcType=BIGINT},
|
||
|
#{createUser,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER}, #{templateContent,jdbcType=LONGVARCHAR}
|
||
|
)
|
||
|
</insert>
|
||
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.PanelPdfTemplate">
|
||
|
insert into panel_pdf_template
|
||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
<if test="id != null">
|
||
|
id,
|
||
|
</if>
|
||
|
<if test="name != null">
|
||
|
`name`,
|
||
|
</if>
|
||
|
<if test="createTime != null">
|
||
|
create_time,
|
||
|
</if>
|
||
|
<if test="createUser != null">
|
||
|
create_user,
|
||
|
</if>
|
||
|
<if test="sort != null">
|
||
|
sort,
|
||
|
</if>
|
||
|
<if test="templateContent != null">
|
||
|
template_content,
|
||
|
</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="createTime != null">
|
||
|
#{createTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
<if test="createUser != null">
|
||
|
#{createUser,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="sort != null">
|
||
|
#{sort,jdbcType=INTEGER},
|
||
|
</if>
|
||
|
<if test="templateContent != null">
|
||
|
#{templateContent,jdbcType=LONGVARCHAR},
|
||
|
</if>
|
||
|
</trim>
|
||
|
</insert>
|
||
|
<select id="countByExample" parameterType="io.dataease.base.domain.PanelPdfTemplateExample" resultType="java.lang.Long">
|
||
|
select count(*) from panel_pdf_template
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Example_Where_Clause" />
|
||
|
</if>
|
||
|
</select>
|
||
|
<update id="updateByExampleSelective" parameterType="map">
|
||
|
update panel_pdf_template
|
||
|
<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.createTime != null">
|
||
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
<if test="record.createUser != null">
|
||
|
create_user = #{record.createUser,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="record.sort != null">
|
||
|
sort = #{record.sort,jdbcType=INTEGER},
|
||
|
</if>
|
||
|
<if test="record.templateContent != null">
|
||
|
template_content = #{record.templateContent,jdbcType=LONGVARCHAR},
|
||
|
</if>
|
||
|
</set>
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByExampleWithBLOBs" parameterType="map">
|
||
|
update panel_pdf_template
|
||
|
set id = #{record.id,jdbcType=VARCHAR},
|
||
|
`name` = #{record.name,jdbcType=VARCHAR},
|
||
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
||
|
create_user = #{record.createUser,jdbcType=VARCHAR},
|
||
|
sort = #{record.sort,jdbcType=INTEGER},
|
||
|
template_content = #{record.templateContent,jdbcType=LONGVARCHAR}
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByExample" parameterType="map">
|
||
|
update panel_pdf_template
|
||
|
set id = #{record.id,jdbcType=VARCHAR},
|
||
|
`name` = #{record.name,jdbcType=VARCHAR},
|
||
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
||
|
create_user = #{record.createUser,jdbcType=VARCHAR},
|
||
|
sort = #{record.sort,jdbcType=INTEGER}
|
||
|
<if test="_parameter != null">
|
||
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
</if>
|
||
|
</update>
|
||
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.PanelPdfTemplate">
|
||
|
update panel_pdf_template
|
||
|
<set>
|
||
|
<if test="name != null">
|
||
|
`name` = #{name,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="createTime != null">
|
||
|
create_time = #{createTime,jdbcType=BIGINT},
|
||
|
</if>
|
||
|
<if test="createUser != null">
|
||
|
create_user = #{createUser,jdbcType=VARCHAR},
|
||
|
</if>
|
||
|
<if test="sort != null">
|
||
|
sort = #{sort,jdbcType=INTEGER},
|
||
|
</if>
|
||
|
<if test="templateContent != null">
|
||
|
template_content = #{templateContent,jdbcType=LONGVARCHAR},
|
||
|
</if>
|
||
|
</set>
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</update>
|
||
|
<update id="updateByPrimaryKeyWithBLOBs" parameterType="io.dataease.base.domain.PanelPdfTemplate">
|
||
|
update panel_pdf_template
|
||
|
set `name` = #{name,jdbcType=VARCHAR},
|
||
|
create_time = #{createTime,jdbcType=BIGINT},
|
||
|
create_user = #{createUser,jdbcType=VARCHAR},
|
||
|
sort = #{sort,jdbcType=INTEGER},
|
||
|
template_content = #{templateContent,jdbcType=LONGVARCHAR}
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</update>
|
||
|
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.PanelPdfTemplate">
|
||
|
update panel_pdf_template
|
||
|
set `name` = #{name,jdbcType=VARCHAR},
|
||
|
create_time = #{createTime,jdbcType=BIGINT},
|
||
|
create_user = #{createUser,jdbcType=VARCHAR},
|
||
|
sort = #{sort,jdbcType=INTEGER}
|
||
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
</update>
|
||
|
</mapper>
|