master
parent
1675fbe6f4
commit
ca73521faa
@ -1,397 +1,444 @@
|
||||
<?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.sztzjy.resource_center.mapper.SysCaseQuestionMapper">
|
||||
<resultMap id="BaseResultMap" type="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
<id column="case_id" jdbcType="VARCHAR" property="caseId"/>
|
||||
<result column="title" jdbcType="VARCHAR" property="title"/>
|
||||
<result column="resource_data" jdbcType="VARCHAR" property="resourceData"/>
|
||||
<result column="source" jdbcType="VARCHAR" property="source"/>
|
||||
<result column="type" jdbcType="VARCHAR" property="type"/>
|
||||
<result column="one_id" jdbcType="VARCHAR" property="oneId"/>
|
||||
<result column="two_id" jdbcType="VARCHAR" property="twoId"/>
|
||||
<result column="three" jdbcType="VARCHAR" property="three"/>
|
||||
<result column="unmount_status" jdbcType="BIT" property="unmountStatus"/>
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
|
||||
</resultMap>
|
||||
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
<result column="content" jdbcType="LONGVARCHAR" property="content"/>
|
||||
</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>
|
||||
<resultMap id="BaseResultMap" type="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
<id column="case_id" jdbcType="VARCHAR" property="caseId" />
|
||||
<result column="title" jdbcType="VARCHAR" property="title" />
|
||||
<result column="resource_data" jdbcType="VARCHAR" property="resourceData" />
|
||||
<result column="source" jdbcType="VARCHAR" property="source" />
|
||||
<result column="type" jdbcType="VARCHAR" property="type" />
|
||||
<result column="one_id" jdbcType="VARCHAR" property="oneId" />
|
||||
<result column="one_name" jdbcType="VARCHAR" property="oneName" />
|
||||
<result column="two_id" jdbcType="VARCHAR" property="twoId" />
|
||||
<result column="two_name" jdbcType="VARCHAR" property="twoName" />
|
||||
<result column="three_id" jdbcType="VARCHAR" property="threeId" />
|
||||
<result column="three_name" jdbcType="VARCHAR" property="threeName" />
|
||||
<result column="unmount_status" jdbcType="BIT" property="unmountStatus" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
</resultMap>
|
||||
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
<result column="content" jdbcType="LONGVARCHAR" property="content" />
|
||||
</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>
|
||||
</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">
|
||||
case_id
|
||||
, title, resource_data, source, type, one_id, two_id, three, unmount_status,
|
||||
create_time, update_time
|
||||
</sql>
|
||||
<sql id="Blob_Column_List">
|
||||
content
|
||||
</sql>
|
||||
<select id="selectByExampleWithBLOBs" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample"
|
||||
resultMap="ResultMapWithBLOBs">
|
||||
select
|
||||
<if test="distinct">
|
||||
distinct
|
||||
</if>
|
||||
<include refid="Base_Column_List"/>
|
||||
,
|
||||
<include refid="Blob_Column_List"/>
|
||||
from sys_case_questions
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause"/>
|
||||
</if>
|
||||
<if test="orderByClause != null">
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByExample" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample"
|
||||
resultMap="BaseResultMap">
|
||||
select
|
||||
<if test="distinct">
|
||||
distinct
|
||||
</if>
|
||||
<include refid="Base_Column_List"/>
|
||||
from sys_case_questions
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause"/>
|
||||
</trim>
|
||||
</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 sys_case_questions
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||||
delete
|
||||
from sys_case_questions
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
<delete id="deleteByExample" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample">
|
||||
delete from sys_case_questions
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause"/>
|
||||
</if>
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
insert into sys_case_questions (case_id, title, resource_data,
|
||||
source, type, one_id,
|
||||
two_id, three, unmount_status,
|
||||
create_time, update_time, content)
|
||||
values (#{caseId,jdbcType=VARCHAR}, #{title,jdbcType=VARCHAR}, #{resourceData,jdbcType=VARCHAR},
|
||||
#{source,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{oneId,jdbcType=VARCHAR},
|
||||
#{twoId,jdbcType=VARCHAR}, #{three,jdbcType=VARCHAR}, #{unmountStatus,jdbcType=BIT},
|
||||
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{content,jdbcType=LONGVARCHAR})
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
insert into sys_case_questions
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="caseId != null">
|
||||
case_id,
|
||||
</if>
|
||||
<if test="title != null">
|
||||
title,
|
||||
</if>
|
||||
<if test="resourceData != null">
|
||||
resource_data,
|
||||
</if>
|
||||
<if test="source != null">
|
||||
source,
|
||||
</if>
|
||||
<if test="type != null">
|
||||
type,
|
||||
</if>
|
||||
<if test="oneId != null">
|
||||
one_id,
|
||||
</if>
|
||||
<if test="twoId != null">
|
||||
two_id,
|
||||
</if>
|
||||
<if test="three != null">
|
||||
three,
|
||||
</if>
|
||||
<if test="unmountStatus != null">
|
||||
unmount_status,
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
create_time,
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time,
|
||||
</if>
|
||||
<if test="content != null">
|
||||
content,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="caseId != null">
|
||||
#{caseId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="title != null">
|
||||
#{title,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="resourceData != null">
|
||||
#{resourceData,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="source != null">
|
||||
#{source,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="type != null">
|
||||
#{type,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="oneId != null">
|
||||
#{oneId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="twoId != null">
|
||||
#{twoId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="three != null">
|
||||
#{three,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="unmountStatus != null">
|
||||
#{unmountStatus,jdbcType=BIT},
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
#{createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
#{updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="content != null">
|
||||
#{content,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<select id="countByExample" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample"
|
||||
resultType="java.lang.Long">
|
||||
select count(*) from sys_case_questions
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause"/>
|
||||
</if>
|
||||
</select>
|
||||
<update id="updateByExampleSelective" parameterType="map">
|
||||
update sys_case_questions
|
||||
<set>
|
||||
<if test="record.caseId != null">
|
||||
case_id = #{record.caseId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.title != null">
|
||||
title = #{record.title,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.resourceData != null">
|
||||
resource_data = #{record.resourceData,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.source != null">
|
||||
source = #{record.source,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.type != null">
|
||||
type = #{record.type,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.oneId != null">
|
||||
one_id = #{record.oneId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.twoId != null">
|
||||
two_id = #{record.twoId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.three != null">
|
||||
three = #{record.three,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.unmountStatus != null">
|
||||
unmount_status = #{record.unmountStatus,jdbcType=BIT},
|
||||
</if>
|
||||
<if test="record.createTime != null">
|
||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="record.updateTime != null">
|
||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="record.content != null">
|
||||
content = #{record.content,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause"/>
|
||||
</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>
|
||||
</update>
|
||||
<update id="updateByExampleWithBLOBs" parameterType="map">
|
||||
update sys_case_questions
|
||||
set case_id = #{record.caseId,jdbcType=VARCHAR},
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Base_Column_List">
|
||||
case_id, title, resource_data, source, type, one_id, one_name, two_id, two_name,
|
||||
three_id, three_name, unmount_status, create_time, update_time
|
||||
</sql>
|
||||
<sql id="Blob_Column_List">
|
||||
content
|
||||
</sql>
|
||||
<select id="selectByExampleWithBLOBs" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample" resultMap="ResultMapWithBLOBs">
|
||||
select
|
||||
<if test="distinct">
|
||||
distinct
|
||||
</if>
|
||||
<include refid="Base_Column_List" />
|
||||
,
|
||||
<include refid="Blob_Column_List" />
|
||||
from sys_case_questions
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
<if test="orderByClause != null">
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByExample" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample" resultMap="BaseResultMap">
|
||||
select
|
||||
<if test="distinct">
|
||||
distinct
|
||||
</if>
|
||||
<include refid="Base_Column_List" />
|
||||
from sys_case_questions
|
||||
<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 sys_case_questions
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||||
delete from sys_case_questions
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
<delete id="deleteByExample" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample">
|
||||
delete from sys_case_questions
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
insert into sys_case_questions (case_id, title, resource_data,
|
||||
source, type, one_id,
|
||||
one_name, two_id, two_name,
|
||||
three_id, three_name, unmount_status,
|
||||
create_time, update_time, content
|
||||
)
|
||||
values (#{caseId,jdbcType=VARCHAR}, #{title,jdbcType=VARCHAR}, #{resourceData,jdbcType=VARCHAR},
|
||||
#{source,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{oneId,jdbcType=VARCHAR},
|
||||
#{oneName,jdbcType=VARCHAR}, #{twoId,jdbcType=VARCHAR}, #{twoName,jdbcType=VARCHAR},
|
||||
#{threeId,jdbcType=VARCHAR}, #{threeName,jdbcType=VARCHAR}, #{unmountStatus,jdbcType=BIT},
|
||||
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{content,jdbcType=LONGVARCHAR}
|
||||
)
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
insert into sys_case_questions
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="caseId != null">
|
||||
case_id,
|
||||
</if>
|
||||
<if test="title != null">
|
||||
title,
|
||||
</if>
|
||||
<if test="resourceData != null">
|
||||
resource_data,
|
||||
</if>
|
||||
<if test="source != null">
|
||||
source,
|
||||
</if>
|
||||
<if test="type != null">
|
||||
type,
|
||||
</if>
|
||||
<if test="oneId != null">
|
||||
one_id,
|
||||
</if>
|
||||
<if test="oneName != null">
|
||||
one_name,
|
||||
</if>
|
||||
<if test="twoId != null">
|
||||
two_id,
|
||||
</if>
|
||||
<if test="twoName != null">
|
||||
two_name,
|
||||
</if>
|
||||
<if test="threeId != null">
|
||||
three_id,
|
||||
</if>
|
||||
<if test="threeName != null">
|
||||
three_name,
|
||||
</if>
|
||||
<if test="unmountStatus != null">
|
||||
unmount_status,
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
create_time,
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time,
|
||||
</if>
|
||||
<if test="content != null">
|
||||
content,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="caseId != null">
|
||||
#{caseId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="title != null">
|
||||
#{title,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="resourceData != null">
|
||||
#{resourceData,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="source != null">
|
||||
#{source,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="type != null">
|
||||
#{type,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="oneId != null">
|
||||
#{oneId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="oneName != null">
|
||||
#{oneName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="twoId != null">
|
||||
#{twoId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="twoName != null">
|
||||
#{twoName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="threeId != null">
|
||||
#{threeId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="threeName != null">
|
||||
#{threeName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="unmountStatus != null">
|
||||
#{unmountStatus,jdbcType=BIT},
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
#{createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
#{updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="content != null">
|
||||
#{content,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<select id="countByExample" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestionExample" resultType="java.lang.Long">
|
||||
select count(*) from sys_case_questions
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</select>
|
||||
<update id="updateByExampleSelective" parameterType="map">
|
||||
update sys_case_questions
|
||||
<set>
|
||||
<if test="record.caseId != null">
|
||||
case_id = #{record.caseId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.title != null">
|
||||
title = #{record.title,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.resourceData != null">
|
||||
resource_data = #{record.resourceData,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.source != null">
|
||||
source = #{record.source,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.type != null">
|
||||
type = #{record.type,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.oneId != null">
|
||||
one_id = #{record.oneId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.oneName != null">
|
||||
one_name = #{record.oneName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.twoId != null">
|
||||
two_id = #{record.twoId,jdbcType=VARCHAR},
|
||||
three = #{record.three,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.twoName != null">
|
||||
two_name = #{record.twoName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.threeId != null">
|
||||
three_id = #{record.threeId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.threeName != null">
|
||||
three_name = #{record.threeName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.unmountStatus != null">
|
||||
unmount_status = #{record.unmountStatus,jdbcType=BIT},
|
||||
</if>
|
||||
<if test="record.createTime != null">
|
||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="record.updateTime != null">
|
||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
||||
content = #{record.content,jdbcType=LONGVARCHAR}
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause"/>
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExample" parameterType="map">
|
||||
update sys_case_questions
|
||||
set case_id = #{record.caseId,jdbcType=VARCHAR},
|
||||
title = #{record.title,jdbcType=VARCHAR},
|
||||
resource_data = #{record.resourceData,jdbcType=VARCHAR},
|
||||
source = #{record.source,jdbcType=VARCHAR},
|
||||
type = #{record.type,jdbcType=VARCHAR},
|
||||
one_id = #{record.oneId,jdbcType=VARCHAR},
|
||||
two_id = #{record.twoId,jdbcType=VARCHAR},
|
||||
three = #{record.three,jdbcType=VARCHAR},
|
||||
unmount_status = #{record.unmountStatus,jdbcType=BIT},
|
||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause"/>
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
update sys_case_questions
|
||||
<set>
|
||||
<if test="title != null">
|
||||
title = #{title,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="resourceData != null">
|
||||
resource_data = #{resourceData,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="source != null">
|
||||
source = #{source,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="type != null">
|
||||
type = #{type,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="oneId != null">
|
||||
one_id = #{oneId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="twoId != null">
|
||||
two_id = #{twoId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="three != null">
|
||||
three = #{three,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="unmountStatus != null">
|
||||
unmount_status = #{unmountStatus,jdbcType=BIT},
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="content != null">
|
||||
content = #{content,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKeyWithBLOBs" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
update sys_case_questions
|
||||
set title = #{title,jdbcType=VARCHAR},
|
||||
resource_data = #{resourceData,jdbcType=VARCHAR},
|
||||
source = #{source,jdbcType=VARCHAR},
|
||||
type = #{type,jdbcType=VARCHAR},
|
||||
one_id = #{oneId,jdbcType=VARCHAR},
|
||||
two_id = #{twoId,jdbcType=VARCHAR},
|
||||
three = #{three,jdbcType=VARCHAR},
|
||||
unmount_status = #{unmountStatus,jdbcType=BIT},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||
content = #{content,jdbcType=LONGVARCHAR}
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
update sys_case_questions
|
||||
set title = #{title,jdbcType=VARCHAR},
|
||||
resource_data = #{resourceData,jdbcType=VARCHAR},
|
||||
source = #{source,jdbcType=VARCHAR},
|
||||
type = #{type,jdbcType=VARCHAR},
|
||||
one_id = #{oneId,jdbcType=VARCHAR},
|
||||
two_id = #{twoId,jdbcType=VARCHAR},
|
||||
three = #{three,jdbcType=VARCHAR},
|
||||
unmount_status = #{unmountStatus,jdbcType=BIT},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
|
||||
<!--条件查询-->
|
||||
<select id="selectCaseByConditions" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select * from sys_case_question s
|
||||
<where>
|
||||
<if test="oneId != null and oneId != ''">
|
||||
s.one_id = #{oneId}
|
||||
</if>
|
||||
<if test="title != null and title != ''">
|
||||
and s.title = #{title}
|
||||
</if>
|
||||
and s.unmount_status is false
|
||||
</where>
|
||||
</select>
|
||||
</if>
|
||||
<if test="record.content != null">
|
||||
content = #{record.content,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExampleWithBLOBs" parameterType="map">
|
||||
update sys_case_questions
|
||||
set case_id = #{record.caseId,jdbcType=VARCHAR},
|
||||
title = #{record.title,jdbcType=VARCHAR},
|
||||
resource_data = #{record.resourceData,jdbcType=VARCHAR},
|
||||
source = #{record.source,jdbcType=VARCHAR},
|
||||
type = #{record.type,jdbcType=VARCHAR},
|
||||
one_id = #{record.oneId,jdbcType=VARCHAR},
|
||||
one_name = #{record.oneName,jdbcType=VARCHAR},
|
||||
two_id = #{record.twoId,jdbcType=VARCHAR},
|
||||
two_name = #{record.twoName,jdbcType=VARCHAR},
|
||||
three_id = #{record.threeId,jdbcType=VARCHAR},
|
||||
three_name = #{record.threeName,jdbcType=VARCHAR},
|
||||
unmount_status = #{record.unmountStatus,jdbcType=BIT},
|
||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
||||
content = #{record.content,jdbcType=LONGVARCHAR}
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExample" parameterType="map">
|
||||
update sys_case_questions
|
||||
set case_id = #{record.caseId,jdbcType=VARCHAR},
|
||||
title = #{record.title,jdbcType=VARCHAR},
|
||||
resource_data = #{record.resourceData,jdbcType=VARCHAR},
|
||||
source = #{record.source,jdbcType=VARCHAR},
|
||||
type = #{record.type,jdbcType=VARCHAR},
|
||||
one_id = #{record.oneId,jdbcType=VARCHAR},
|
||||
one_name = #{record.oneName,jdbcType=VARCHAR},
|
||||
two_id = #{record.twoId,jdbcType=VARCHAR},
|
||||
two_name = #{record.twoName,jdbcType=VARCHAR},
|
||||
three_id = #{record.threeId,jdbcType=VARCHAR},
|
||||
three_name = #{record.threeName,jdbcType=VARCHAR},
|
||||
unmount_status = #{record.unmountStatus,jdbcType=BIT},
|
||||
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
update sys_case_questions
|
||||
<set>
|
||||
<if test="title != null">
|
||||
title = #{title,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="resourceData != null">
|
||||
resource_data = #{resourceData,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="source != null">
|
||||
source = #{source,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="type != null">
|
||||
type = #{type,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="oneId != null">
|
||||
one_id = #{oneId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="oneName != null">
|
||||
one_name = #{oneName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="twoId != null">
|
||||
two_id = #{twoId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="twoName != null">
|
||||
two_name = #{twoName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="threeId != null">
|
||||
three_id = #{threeId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="threeName != null">
|
||||
three_name = #{threeName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="unmountStatus != null">
|
||||
unmount_status = #{unmountStatus,jdbcType=BIT},
|
||||
</if>
|
||||
<if test="createTime != null">
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||
</if>
|
||||
<if test="content != null">
|
||||
content = #{content,jdbcType=LONGVARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKeyWithBLOBs" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
update sys_case_questions
|
||||
set title = #{title,jdbcType=VARCHAR},
|
||||
resource_data = #{resourceData,jdbcType=VARCHAR},
|
||||
source = #{source,jdbcType=VARCHAR},
|
||||
type = #{type,jdbcType=VARCHAR},
|
||||
one_id = #{oneId,jdbcType=VARCHAR},
|
||||
one_name = #{oneName,jdbcType=VARCHAR},
|
||||
two_id = #{twoId,jdbcType=VARCHAR},
|
||||
two_name = #{twoName,jdbcType=VARCHAR},
|
||||
three_id = #{threeId,jdbcType=VARCHAR},
|
||||
three_name = #{threeName,jdbcType=VARCHAR},
|
||||
unmount_status = #{unmountStatus,jdbcType=BIT},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
||||
content = #{content,jdbcType=LONGVARCHAR}
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="com.sztzjy.resource_center.entity.SysCaseQuestion">
|
||||
update sys_case_questions
|
||||
set title = #{title,jdbcType=VARCHAR},
|
||||
resource_data = #{resourceData,jdbcType=VARCHAR},
|
||||
source = #{source,jdbcType=VARCHAR},
|
||||
type = #{type,jdbcType=VARCHAR},
|
||||
one_id = #{oneId,jdbcType=VARCHAR},
|
||||
one_name = #{oneName,jdbcType=VARCHAR},
|
||||
two_id = #{twoId,jdbcType=VARCHAR},
|
||||
two_name = #{twoName,jdbcType=VARCHAR},
|
||||
three_id = #{threeId,jdbcType=VARCHAR},
|
||||
three_name = #{threeName,jdbcType=VARCHAR},
|
||||
unmount_status = #{unmountStatus,jdbcType=BIT},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
||||
where case_id = #{caseId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
|
||||
<!--条件查询-->
|
||||
<select id="selectCaseByConditions" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select * from sys_case_questions s
|
||||
<where>
|
||||
<if test="oneId != null and oneId != ''">
|
||||
s.one_id = #{oneId}
|
||||
</if>
|
||||
<if test="title != null and title != ''">
|
||||
and s.title = #{title}
|
||||
</if>
|
||||
and s.unmount_status is false
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
Loading…
Reference in New Issue