123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- <?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.cdu.lys.graduation.repository.dao.CouponDOMapper" >
- <resultMap id="BaseResultMap" type="com.cdu.lys.graduation.repository.entity.CouponDO" >
- <constructor >
- <idArg column="id" jdbcType="INTEGER" javaType="java.lang.Integer" />
- <arg column="coupon_name" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="reach" jdbcType="DOUBLE" javaType="java.lang.Double" />
- <arg column="reduce" jdbcType="DOUBLE" javaType="java.lang.Double" />
- <arg column="user_type" jdbcType="INTEGER" javaType="java.lang.Integer" />
- <arg column="effective_time" jdbcType="INTEGER" javaType="java.lang.Integer" />
- <arg column="deadline" jdbcType="TIMESTAMP" javaType="java.util.Date" />
- <arg column="number" jdbcType="INTEGER" javaType="java.lang.Integer" />
- <arg column="create_time" jdbcType="TIMESTAMP" javaType="java.util.Date" />
- <arg column="update_time" jdbcType="TIMESTAMP" javaType="java.util.Date" />
- <arg column="is_delete" jdbcType="CHAR" javaType="java.lang.String" />
- </constructor>
- </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, coupon_name, reach, reduce, user_type, effective_time, deadline, number, create_time,
- update_time, is_delete
- </sql>
- <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.cdu.lys.graduation.repository.entity.CouponDOExample" >
- select
- <if test="distinct" >
- distinct
- </if>
- 'true' as QUERYID,
- <include refid="Base_Column_List" />
- from tb_coupon
- <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 tb_coupon
- where id = #{id,jdbcType=INTEGER}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
- delete from tb_coupon
- where id = #{id,jdbcType=INTEGER}
- </delete>
- <delete id="deleteByExample" parameterType="com.cdu.lys.graduation.repository.entity.CouponDOExample" >
- delete from tb_coupon
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </delete>
- <insert id="insert" parameterType="com.cdu.lys.graduation.repository.entity.CouponDO" >
- insert into tb_coupon (id, coupon_name, reach,
- reduce, user_type, effective_time,
- deadline, number, create_time,
- update_time, is_delete)
- values (#{id,jdbcType=INTEGER}, #{couponName,jdbcType=VARCHAR}, #{reach,jdbcType=DOUBLE},
- #{reduce,jdbcType=DOUBLE}, #{userType,jdbcType=INTEGER}, #{effectiveTime,jdbcType=INTEGER},
- #{deadline,jdbcType=TIMESTAMP}, #{number,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP},
- #{updateTime,jdbcType=TIMESTAMP}, #{isDelete,jdbcType=CHAR})
- </insert>
- <insert id="insertSelective" parameterType="com.cdu.lys.graduation.repository.entity.CouponDO" >
- insert into tb_coupon
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- id,
- </if>
- <if test="couponName != null" >
- coupon_name,
- </if>
- <if test="reach != null" >
- reach,
- </if>
- <if test="reduce != null" >
- reduce,
- </if>
- <if test="userType != null" >
- user_type,
- </if>
- <if test="effectiveTime != null" >
- effective_time,
- </if>
- <if test="deadline != null" >
- deadline,
- </if>
- <if test="number != null" >
- number,
- </if>
- <if test="createTime != null" >
- create_time,
- </if>
- <if test="updateTime != null" >
- update_time,
- </if>
- <if test="isDelete != null" >
- is_delete,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- #{id,jdbcType=INTEGER},
- </if>
- <if test="couponName != null" >
- #{couponName,jdbcType=VARCHAR},
- </if>
- <if test="reach != null" >
- #{reach,jdbcType=DOUBLE},
- </if>
- <if test="reduce != null" >
- #{reduce,jdbcType=DOUBLE},
- </if>
- <if test="userType != null" >
- #{userType,jdbcType=INTEGER},
- </if>
- <if test="effectiveTime != null" >
- #{effectiveTime,jdbcType=INTEGER},
- </if>
- <if test="deadline != null" >
- #{deadline,jdbcType=TIMESTAMP},
- </if>
- <if test="number != null" >
- #{number,jdbcType=INTEGER},
- </if>
- <if test="createTime != null" >
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateTime != null" >
- #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="isDelete != null" >
- #{isDelete,jdbcType=CHAR},
- </if>
- </trim>
- </insert>
- <select id="countByExample" parameterType="com.cdu.lys.graduation.repository.entity.CouponDOExample" resultType="java.lang.Integer" >
- select count(*) from tb_coupon
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </select>
- <update id="updateByExampleSelective" parameterType="map" >
- update tb_coupon
- <set >
- <if test="record.id != null" >
- id = #{record.id,jdbcType=INTEGER},
- </if>
- <if test="record.couponName != null" >
- coupon_name = #{record.couponName,jdbcType=VARCHAR},
- </if>
- <if test="record.reach != null" >
- reach = #{record.reach,jdbcType=DOUBLE},
- </if>
- <if test="record.reduce != null" >
- reduce = #{record.reduce,jdbcType=DOUBLE},
- </if>
- <if test="record.userType != null" >
- user_type = #{record.userType,jdbcType=INTEGER},
- </if>
- <if test="record.effectiveTime != null" >
- effective_time = #{record.effectiveTime,jdbcType=INTEGER},
- </if>
- <if test="record.deadline != null" >
- deadline = #{record.deadline,jdbcType=TIMESTAMP},
- </if>
- <if test="record.number != null" >
- number = #{record.number,jdbcType=INTEGER},
- </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.isDelete != null" >
- is_delete = #{record.isDelete,jdbcType=CHAR},
- </if>
- </set>
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByExample" parameterType="map" >
- update tb_coupon
- set id = #{record.id,jdbcType=INTEGER},
- coupon_name = #{record.couponName,jdbcType=VARCHAR},
- reach = #{record.reach,jdbcType=DOUBLE},
- reduce = #{record.reduce,jdbcType=DOUBLE},
- user_type = #{record.userType,jdbcType=INTEGER},
- effective_time = #{record.effectiveTime,jdbcType=INTEGER},
- deadline = #{record.deadline,jdbcType=TIMESTAMP},
- number = #{record.number,jdbcType=INTEGER},
- create_time = #{record.createTime,jdbcType=TIMESTAMP},
- update_time = #{record.updateTime,jdbcType=TIMESTAMP},
- is_delete = #{record.isDelete,jdbcType=CHAR}
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByPrimaryKeySelective" parameterType="com.cdu.lys.graduation.repository.entity.CouponDO" >
- update tb_coupon
- <set >
- <if test="couponName != null" >
- coupon_name = #{couponName,jdbcType=VARCHAR},
- </if>
- <if test="reach != null" >
- reach = #{reach,jdbcType=DOUBLE},
- </if>
- <if test="reduce != null" >
- reduce = #{reduce,jdbcType=DOUBLE},
- </if>
- <if test="userType != null" >
- user_type = #{userType,jdbcType=INTEGER},
- </if>
- <if test="effectiveTime != null" >
- effective_time = #{effectiveTime,jdbcType=INTEGER},
- </if>
- <if test="deadline != null" >
- deadline = #{deadline,jdbcType=TIMESTAMP},
- </if>
- <if test="number != null" >
- number = #{number,jdbcType=INTEGER},
- </if>
- <if test="createTime != null" >
- create_time = #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateTime != null" >
- update_time = #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="isDelete != null" >
- is_delete = #{isDelete,jdbcType=CHAR},
- </if>
- </set>
- where id = #{id,jdbcType=INTEGER}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.cdu.lys.graduation.repository.entity.CouponDO" >
- update tb_coupon
- set coupon_name = #{couponName,jdbcType=VARCHAR},
- reach = #{reach,jdbcType=DOUBLE},
- reduce = #{reduce,jdbcType=DOUBLE},
- user_type = #{userType,jdbcType=INTEGER},
- effective_time = #{effectiveTime,jdbcType=INTEGER},
- deadline = #{deadline,jdbcType=TIMESTAMP},
- number = #{number,jdbcType=INTEGER},
- create_time = #{createTime,jdbcType=TIMESTAMP},
- update_time = #{updateTime,jdbcType=TIMESTAMP},
- is_delete = #{isDelete,jdbcType=CHAR}
- where id = #{id,jdbcType=INTEGER}
- </update>
- </mapper>
|