You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
209 lines
7.1 KiB
209 lines
7.1 KiB
<?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.dao.GonggaoMapper" >
|
|
<resultMap id="BaseResultMap" type="com.entity.Gonggao" >
|
|
<id column="id" property="id" jdbcType="INTEGER" />
|
|
<result column="biaoti" property="biaoti" jdbcType="VARCHAR" />
|
|
<result column="neirong" property="neirong" jdbcType="VARCHAR" />
|
|
<result column="tupian" property="tupian" jdbcType="VARCHAR" />
|
|
<result column="shijian" property="shijian" jdbcType="VARCHAR" />
|
|
|
|
</resultMap>
|
|
<sql id="Example_Where_Clause" >
|
|
<where >
|
|
<foreach collection="oredCriteria" item="criteria" separator="or" >
|
|
<if test="criteria.valid" >
|
|
<trim prefix="(" suffix=")" prefixOverrides="and" >
|
|
<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 collection="criterion.value" item="listItem" open="(" close=")" 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="(" suffix=")" prefixOverrides="and" >
|
|
<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 collection="criterion.value" item="listItem" open="(" close=")" separator="," >
|
|
#{listItem}
|
|
</foreach>
|
|
</when>
|
|
</choose>
|
|
</foreach>
|
|
</trim>
|
|
</if>
|
|
</foreach>
|
|
</where>
|
|
</sql>
|
|
<sql id="Base_Column_List" >
|
|
id, biaoti, neirong, tupian, shijian
|
|
</sql>
|
|
<select id="selectByExample" resultMap="BaseResultMap" parameterType="com.entity.GonggaoExample" >
|
|
select
|
|
<if test="distinct" >
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from gonggao
|
|
<if test="_parameter != null" >
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
<if test="orderByClause != null" >
|
|
order by ${orderByClause}
|
|
</if>
|
|
</select>
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from gonggao
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
delete from gonggao
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="com.entity.GonggaoExample" >
|
|
delete from gonggao
|
|
<if test="_parameter != null" >
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="com.entity.Gonggao" >
|
|
<selectKey resultType="java.lang.Integer" keyProperty="id" order="AFTER" >
|
|
SELECT LAST_INSERT_ID()
|
|
</selectKey>
|
|
insert into gonggao (biaoti,neirong,tupian,shijian)
|
|
values (#{biaoti,jdbcType=VARCHAR},#{neirong,jdbcType=VARCHAR},#{tupian,jdbcType=VARCHAR},#{shijian,jdbcType=VARCHAR})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.entity.Gonggao" >
|
|
<selectKey resultType="java.lang.Integer" keyProperty="id" order="AFTER" >
|
|
SELECT LAST_INSERT_ID()
|
|
</selectKey>
|
|
insert into gonggao
|
|
<trim prefix="(" suffix=")" suffixOverrides="," >
|
|
<if test="biaoti != null" >
|
|
biaoti,
|
|
</if>
|
|
<if test="neirong != null" >
|
|
neirong,
|
|
</if>
|
|
<if test="tupian != null" >
|
|
tupian,
|
|
</if>
|
|
<if test="shijian != null" >
|
|
shijian,
|
|
</if>
|
|
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
<if test="biaoti != null" >
|
|
#{biaoti,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="neirong != null" >
|
|
#{neirong,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="tupian != null" >
|
|
#{tupian,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="shijian != null" >
|
|
#{shijian,jdbcType=VARCHAR},
|
|
</if>
|
|
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="com.entity.GonggaoExample" resultType="java.lang.Integer" >
|
|
select count(*) from gonggao
|
|
<if test="_parameter != null" >
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map" >
|
|
update gonggao
|
|
<set >
|
|
<if test="record.id != null" >
|
|
id = #{record.id,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="record.biaoti != null" >
|
|
biaoti = #{record.biaoti,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.neirong != null" >
|
|
neirong = #{record.neirong,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.tupian != null" >
|
|
tupian = #{record.tupian,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.shijian != null" >
|
|
shijian = #{record.shijian,jdbcType=VARCHAR},
|
|
</if>
|
|
|
|
</set>
|
|
<if test="_parameter != null" >
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map" >
|
|
update gonggao
|
|
set id = #{record.id,jdbcType=INTEGER},
|
|
biaoti = #{record.biaoti,jdbcType=VARCHAR},neirong = #{record.neirong,jdbcType=VARCHAR},tupian = #{record.tupian,jdbcType=VARCHAR},shijian = #{record.shijian,jdbcType=VARCHAR}
|
|
<if test="_parameter != null" >
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.entity.Gonggao" >
|
|
update gonggao
|
|
<set >
|
|
<if test="biaoti != null" >
|
|
biaoti = #{biaoti,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="neirong != null" >
|
|
neirong = #{neirong,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="tupian != null" >
|
|
tupian = #{tupian,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="shijian != null" >
|
|
shijian = #{shijian,jdbcType=VARCHAR},
|
|
</if>
|
|
|
|
</set>
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.entity.Gonggao" >
|
|
update gonggao
|
|
set biaoti = #{biaoti,jdbcType=VARCHAR},neirong = #{neirong,jdbcType=VARCHAR},tupian = #{tupian,jdbcType=VARCHAR},shijian = #{shijian,jdbcType=VARCHAR}
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</update>
|
|
</mapper>
|