205 lines
7.6 KiB
XML
205 lines
7.6 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="com.rzyc.mapper.ent.MinCheckUnitIdsMapper">
|
||
|
|
<resultMap id="BaseResultMap" type="com.rzyc.model.ent.MinCheckUnitIds">
|
||
|
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
||
|
|
<result column="min_work_check_id" jdbcType="VARCHAR" property="minWorkCheckId" />
|
||
|
|
<result column="min_work_unit_id" jdbcType="INTEGER" property="minWorkUnitId" />
|
||
|
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||
|
|
</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, min_work_check_id, min_work_unit_id, create_time
|
||
|
|
</sql>
|
||
|
|
<select id="selectByExample" parameterType="com.rzyc.model.ent.MinCheckUnitIdsExample" resultMap="BaseResultMap">
|
||
|
|
select
|
||
|
|
<if test="distinct">
|
||
|
|
distinct
|
||
|
|
</if>
|
||
|
|
<include refid="Base_Column_List" />
|
||
|
|
from min_check_unit_ids
|
||
|
|
<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.String" resultMap="BaseResultMap">
|
||
|
|
select
|
||
|
|
<include refid="Base_Column_List" />
|
||
|
|
from min_check_unit_ids
|
||
|
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
|
</select>
|
||
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||
|
|
delete from min_check_unit_ids
|
||
|
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
|
</delete>
|
||
|
|
<delete id="deleteByExample" parameterType="com.rzyc.model.ent.MinCheckUnitIdsExample">
|
||
|
|
delete from min_check_unit_ids
|
||
|
|
<if test="_parameter != null">
|
||
|
|
<include refid="Example_Where_Clause" />
|
||
|
|
</if>
|
||
|
|
</delete>
|
||
|
|
<insert id="insert" parameterType="com.rzyc.model.ent.MinCheckUnitIds">
|
||
|
|
insert into min_check_unit_ids (id, min_work_check_id, min_work_unit_id,
|
||
|
|
create_time)
|
||
|
|
values (#{id,jdbcType=VARCHAR}, #{minWorkCheckId,jdbcType=VARCHAR}, #{minWorkUnitId,jdbcType=INTEGER},
|
||
|
|
#{createTime,jdbcType=TIMESTAMP})
|
||
|
|
</insert>
|
||
|
|
<insert id="insertSelective" parameterType="com.rzyc.model.ent.MinCheckUnitIds">
|
||
|
|
insert into min_check_unit_ids
|
||
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
|
<if test="id != null">
|
||
|
|
id,
|
||
|
|
</if>
|
||
|
|
<if test="minWorkCheckId != null">
|
||
|
|
min_work_check_id,
|
||
|
|
</if>
|
||
|
|
<if test="minWorkUnitId != null">
|
||
|
|
min_work_unit_id,
|
||
|
|
</if>
|
||
|
|
<if test="createTime != null">
|
||
|
|
create_time,
|
||
|
|
</if>
|
||
|
|
</trim>
|
||
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
|
<if test="id != null">
|
||
|
|
#{id,jdbcType=VARCHAR},
|
||
|
|
</if>
|
||
|
|
<if test="minWorkCheckId != null">
|
||
|
|
#{minWorkCheckId,jdbcType=VARCHAR},
|
||
|
|
</if>
|
||
|
|
<if test="minWorkUnitId != null">
|
||
|
|
#{minWorkUnitId,jdbcType=INTEGER},
|
||
|
|
</if>
|
||
|
|
<if test="createTime != null">
|
||
|
|
#{createTime,jdbcType=TIMESTAMP},
|
||
|
|
</if>
|
||
|
|
</trim>
|
||
|
|
</insert>
|
||
|
|
<select id="countByExample" parameterType="com.rzyc.model.ent.MinCheckUnitIdsExample" resultType="java.lang.Long">
|
||
|
|
select count(*) from min_check_unit_ids
|
||
|
|
<if test="_parameter != null">
|
||
|
|
<include refid="Example_Where_Clause" />
|
||
|
|
</if>
|
||
|
|
</select>
|
||
|
|
<update id="updateByExampleSelective" parameterType="map">
|
||
|
|
update min_check_unit_ids
|
||
|
|
<set>
|
||
|
|
<if test="record.id != null">
|
||
|
|
id = #{record.id,jdbcType=VARCHAR},
|
||
|
|
</if>
|
||
|
|
<if test="record.minWorkCheckId != null">
|
||
|
|
min_work_check_id = #{record.minWorkCheckId,jdbcType=VARCHAR},
|
||
|
|
</if>
|
||
|
|
<if test="record.minWorkUnitId != null">
|
||
|
|
min_work_unit_id = #{record.minWorkUnitId,jdbcType=INTEGER},
|
||
|
|
</if>
|
||
|
|
<if test="record.createTime != null">
|
||
|
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
||
|
|
</if>
|
||
|
|
</set>
|
||
|
|
<if test="_parameter != null">
|
||
|
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
|
</if>
|
||
|
|
</update>
|
||
|
|
<update id="updateByExample" parameterType="map">
|
||
|
|
update min_check_unit_ids
|
||
|
|
set id = #{record.id,jdbcType=VARCHAR},
|
||
|
|
min_work_check_id = #{record.minWorkCheckId,jdbcType=VARCHAR},
|
||
|
|
min_work_unit_id = #{record.minWorkUnitId,jdbcType=INTEGER},
|
||
|
|
create_time = #{record.createTime,jdbcType=TIMESTAMP}
|
||
|
|
<if test="_parameter != null">
|
||
|
|
<include refid="Update_By_Example_Where_Clause" />
|
||
|
|
</if>
|
||
|
|
</update>
|
||
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.rzyc.model.ent.MinCheckUnitIds">
|
||
|
|
update min_check_unit_ids
|
||
|
|
<set>
|
||
|
|
<if test="minWorkCheckId != null">
|
||
|
|
min_work_check_id = #{minWorkCheckId,jdbcType=VARCHAR},
|
||
|
|
</if>
|
||
|
|
<if test="minWorkUnitId != null">
|
||
|
|
min_work_unit_id = #{minWorkUnitId,jdbcType=INTEGER},
|
||
|
|
</if>
|
||
|
|
<if test="createTime != null">
|
||
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||
|
|
</if>
|
||
|
|
</set>
|
||
|
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
|
</update>
|
||
|
|
<update id="updateByPrimaryKey" parameterType="com.rzyc.model.ent.MinCheckUnitIds">
|
||
|
|
update min_check_unit_ids
|
||
|
|
set min_work_check_id = #{minWorkCheckId,jdbcType=VARCHAR},
|
||
|
|
min_work_unit_id = #{minWorkUnitId,jdbcType=INTEGER},
|
||
|
|
create_time = #{createTime,jdbcType=TIMESTAMP}
|
||
|
|
where id = #{id,jdbcType=VARCHAR}
|
||
|
|
</update>
|
||
|
|
</mapper>
|