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.
222 lines
7.7 KiB
222 lines
7.7 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.PingjiaMapper" >
|
|
<resultMap id="BaseResultMap" type="com.entity.Pingjia" >
|
|
<id column="id" property="id" jdbcType="INTEGER" />
|
|
<result column="biaoti" property="biaoti" jdbcType="VARCHAR" />
|
|
<result column="fenshu" property="fenshu" jdbcType="VARCHAR" />
|
|
<result column="shijian" property="shijian" jdbcType="VARCHAR" />
|
|
<result column="shangpinid" property="shangpinid" jdbcType="INTEGER" />
|
|
<result column="usersid" property="usersid" jdbcType="INTEGER" />
|
|
|
|
</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, fenshu, shijian, shangpinid, usersid
|
|
</sql>
|
|
<select id="selectByExample" resultMap="BaseResultMap" parameterType="com.entity.PingjiaExample" >
|
|
select
|
|
<if test="distinct" >
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from pingjia
|
|
<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 pingjia
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
delete from pingjia
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="com.entity.PingjiaExample" >
|
|
delete from pingjia
|
|
<if test="_parameter != null" >
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="com.entity.Pingjia" >
|
|
<selectKey resultType="java.lang.Integer" keyProperty="id" order="AFTER" >
|
|
SELECT LAST_INSERT_ID()
|
|
</selectKey>
|
|
insert into pingjia (biaoti,fenshu,shijian,shangpinid,usersid)
|
|
values (#{biaoti,jdbcType=VARCHAR},#{fenshu,jdbcType=VARCHAR},#{shijian,jdbcType=VARCHAR},#{shangpinid,jdbcType=INTEGER},#{usersid,jdbcType=INTEGER})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.entity.Pingjia" >
|
|
<selectKey resultType="java.lang.Integer" keyProperty="id" order="AFTER" >
|
|
SELECT LAST_INSERT_ID()
|
|
</selectKey>
|
|
insert into pingjia
|
|
<trim prefix="(" suffix=")" suffixOverrides="," >
|
|
<if test="biaoti != null" >
|
|
biaoti,
|
|
</if>
|
|
<if test="fenshu != null" >
|
|
fenshu,
|
|
</if>
|
|
<if test="shijian != null" >
|
|
shijian,
|
|
</if>
|
|
<if test="shangpinid != null" >
|
|
shangpinid,
|
|
</if>
|
|
<if test="usersid != null" >
|
|
usersid,
|
|
</if>
|
|
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
<if test="biaoti != null" >
|
|
#{biaoti,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="fenshu != null" >
|
|
#{fenshu,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="shijian != null" >
|
|
#{shijian,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="shangpinid != null" >
|
|
#{shangpinid,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="usersid != null" >
|
|
#{usersid,jdbcType=INTEGER},
|
|
</if>
|
|
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="com.entity.PingjiaExample" resultType="java.lang.Integer" >
|
|
select count(*) from pingjia
|
|
<if test="_parameter != null" >
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map" >
|
|
update pingjia
|
|
<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.fenshu != null" >
|
|
fenshu = #{record.fenshu,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.shijian != null" >
|
|
shijian = #{record.shijian,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.shangpinid != null" >
|
|
shangpinid = #{record.shangpinid,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="record.usersid != null" >
|
|
usersid = #{record.usersid,jdbcType=INTEGER},
|
|
</if>
|
|
|
|
</set>
|
|
<if test="_parameter != null" >
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map" >
|
|
update pingjia
|
|
set id = #{record.id,jdbcType=INTEGER},
|
|
biaoti = #{record.biaoti,jdbcType=VARCHAR},fenshu = #{record.fenshu,jdbcType=VARCHAR},shijian = #{record.shijian,jdbcType=VARCHAR},shangpinid = #{record.shangpinid,jdbcType=INTEGER},usersid = #{record.usersid,jdbcType=INTEGER}
|
|
<if test="_parameter != null" >
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.entity.Pingjia" >
|
|
update pingjia
|
|
<set >
|
|
<if test="biaoti != null" >
|
|
biaoti = #{biaoti,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="fenshu != null" >
|
|
fenshu = #{fenshu,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="shijian != null" >
|
|
shijian = #{shijian,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="shangpinid != null" >
|
|
shangpinid = #{shangpinid,jdbcType=INTEGER},
|
|
</if>
|
|
<if test="usersid != null" >
|
|
usersid = #{usersid,jdbcType=INTEGER},
|
|
</if>
|
|
|
|
</set>
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.entity.Pingjia" >
|
|
update pingjia
|
|
set biaoti = #{biaoti,jdbcType=VARCHAR},fenshu = #{fenshu,jdbcType=VARCHAR},shijian = #{shijian,jdbcType=VARCHAR},shangpinid = #{shangpinid,jdbcType=INTEGER},usersid = #{usersid,jdbcType=INTEGER}
|
|
where id = #{id,jdbcType=INTEGER}
|
|
</update>
|
|
</mapper>
|