| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650 |
- <?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.izouma.awesomeadmin.dao.CouponInfoMapper">
- <resultMap id="BaseResultMap" type="com.izouma.awesomeadmin.model.CouponInfo">
- <id column="id" property="id" jdbcType="INTEGER"/>
- <result column="del_flag" property="delFlag" jdbcType="CHAR"/>
- <result column="update_time" property="updateTime" jdbcType="TIMESTAMP"/>
- <result column="update_user" property="updateUser" jdbcType="VARCHAR"/>
- <result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
- <result column="create_user" property="createUser" jdbcType="VARCHAR"/>
- <result column="name" property="name" jdbcType="VARCHAR"/>
- <result column="discription" property="discription" jdbcType="VARCHAR"/>
- <result column="discount_money" property="discountMoney" jdbcType="DECIMAL"/>
- <result column="limit_money" property="limitMoney" jdbcType="DECIMAL"/>
- <result column="type_flag" property="typeFlag" jdbcType="INTEGER"/>
- <result column="status_flag" property="statusFlag" jdbcType="INTEGER"/>
- <result column="available_days" property="availableDays" jdbcType="INTEGER"/>
- <result column="use_times" property="useTimes" jdbcType="INTEGER"/>
- <result column="begin_time" property="beginTime" jdbcType="TIMESTAMP"/>
- <result column="end_time" property="endTime" jdbcType="TIMESTAMP"/>
- <result column="on_shelf" property="onShelf" jdbcType="CHAR"/>
- <result column="open_flag" property="openFlag" jdbcType="CHAR"/>
- <result column="store_id" property="storeId" jdbcType="INTEGER"/>
- </resultMap>
- <sql id="Base_Column_List">
- <trim suffixOverrides=",">
- id,
- del_flag,
- update_time,
- update_user,
- create_time,
- create_user,
- name,
- discription,
- discount_money,
- limit_money,
- type_flag,
- status_flag,
- available_days,
- use_times,
- begin_time,
- end_time,
- on_shelf,
- open_flag,
- store_id,
- </trim>
- </sql>
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
- select
- <include refid="Base_Column_List"/>
- from coupon_info
- where id = #{id,jdbcType=INTEGER}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
- delete from coupon_info
- where id = #{id,jdbcType=INTEGER}
- </delete>
- <insert id="insertSelective" parameterType="com.izouma.awesomeadmin.model.CouponInfo" useGeneratedKeys="true"
- keyProperty="id">
- insert into coupon_info
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="id!= null">
- id,
- </if>
- <if test="delFlag!= null">
- del_flag,
- </if>
- <if test="updateTime!= null">
- update_time,
- </if>
- <if test="updateUser!= null">
- update_user,
- </if>
- <if test="createTime!= null">
- create_time,
- </if>
- <if test="createUser!= null">
- create_user,
- </if>
- <if test="name!= null">
- name,
- </if>
- <if test="discription!= null">
- discription,
- </if>
- <if test="discountMoney!= null">
- discount_money,
- </if>
- <if test="limitMoney!= null">
- limit_money,
- </if>
- <if test="typeFlag!= null">
- type_flag,
- </if>
- <if test="statusFlag!= null">
- status_flag,
- </if>
- <if test="availableDays!= null">
- available_days,
- </if>
- <if test="useTimes!= null">
- use_times,
- </if>
- <if test="beginTime!= null">
- begin_time,
- </if>
- <if test="endTime!= null">
- end_time,
- </if>
- <if test="onShelf!= null">
- on_shelf,
- </if>
- <if test="openFlag!= null">
- open_flag,
- </if>
- <if test="storeId!= null">
- store_id,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="id != null">
- #{id,jdbcType=INTEGER},
- </if>
- <if test="delFlag != null">
- #{delFlag,jdbcType=CHAR},
- </if>
- <if test="updateTime != null">
- #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateUser != null">
- #{updateUser,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="createUser != null">
- #{createUser,jdbcType=VARCHAR},
- </if>
- <if test="name != null">
- #{name,jdbcType=VARCHAR},
- </if>
- <if test="discription != null">
- #{discription,jdbcType=VARCHAR},
- </if>
- <if test="discountMoney != null">
- #{discountMoney,jdbcType=DECIMAL},
- </if>
- <if test="limitMoney != null">
- #{limitMoney,jdbcType=DECIMAL},
- </if>
- <if test="typeFlag != null">
- #{typeFlag,jdbcType=INTEGER},
- </if>
- <if test="statusFlag != null">
- #{statusFlag,jdbcType=INTEGER},
- </if>
- <if test="availableDays != null">
- #{availableDays,jdbcType=INTEGER},
- </if>
- <if test="useTimes != null">
- #{useTimes,jdbcType=INTEGER},
- </if>
- <if test="beginTime != null">
- #{beginTime,jdbcType=TIMESTAMP},
- </if>
- <if test="endTime != null">
- #{endTime,jdbcType=TIMESTAMP},
- </if>
- <if test="onShelf != null">
- #{onShelf,jdbcType=CHAR},
- </if>
- <if test="openFlag != null">
- #{openFlag,jdbcType=CHAR},
- </if>
- <if test="storeId != null">
- #{storeId,jdbcType=INTEGER},
- </if>
- </trim>
- </insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.CouponInfo">
- update coupon_info
- <set>
- <if test="id != null">
- id= #{id,jdbcType=INTEGER},
- </if>
- <if test="delFlag != null">
- del_flag= #{delFlag,jdbcType=CHAR},
- </if>
- <if test="updateTime != null">
- update_time= #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateUser != null">
- update_user= #{updateUser,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- create_time= #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="createUser != null">
- create_user= #{createUser,jdbcType=VARCHAR},
- </if>
- <if test="name != null">
- name= #{name,jdbcType=VARCHAR},
- </if>
- <if test="discription != null">
- discription= #{discription,jdbcType=VARCHAR},
- </if>
- <if test="discountMoney != null">
- discount_money= #{discountMoney,jdbcType=DECIMAL},
- </if>
- <if test="limitMoney != null">
- limit_money= #{limitMoney,jdbcType=DECIMAL},
- </if>
- <if test="typeFlag != null">
- type_flag= #{typeFlag,jdbcType=INTEGER},
- </if>
- <if test="statusFlag != null">
- status_flag= #{statusFlag,jdbcType=INTEGER},
- </if>
- <if test="availableDays != null">
- available_days= #{availableDays,jdbcType=INTEGER},
- </if>
- <if test="useTimes != null">
- use_times= #{useTimes,jdbcType=INTEGER},
- </if>
- <if test="beginTime != null">
- begin_time= #{beginTime,jdbcType=TIMESTAMP},
- </if>
- <if test="endTime != null">
- end_time= #{endTime,jdbcType=TIMESTAMP},
- </if>
- <if test="onShelf != null">
- on_shelf= #{onShelf,jdbcType=CHAR},
- </if>
- <if test="openFlag != null">
- open_flag= #{openFlag,jdbcType=CHAR},
- </if>
- <if test="storeId != null">
- store_id= #{storeId,jdbcType=INTEGER},
- </if>
- </set>
- where
- <if test="id != null and !"".equals(id)">
- id = #{id,jdbcType=INTEGER}
- </if>
- <if test="idStr != null and !"".equals(idStr)">
- id in (${idStr})
- </if>
- </update>
- <select id="queryCouponInfoByPage" parameterType="java.util.Map"
- resultType="com.izouma.awesomeadmin.model.CouponInfo">
- select
- <include refid="Base_Column_List"/>
- from coupon_info
- <where>
- and del_flag = 'N'
- <if test="record.idStr != null and !"".equals(record.idStr)">
- and id in (${record.idStr})
- </if>
- <if test="record.id != null and !"".equals(record.id)">
- and id = #{record.id}
- </if>
- <if test="record.delFlag != null and !"".equals(record.delFlag)">
- and del_flag = #{record.delFlag}
- </if>
- <if test="record.updateTime != null and !"".equals(record.updateTime)">
- and update_time = #{record.updateTime}
- </if>
- <if test="record.updateUser != null and !"".equals(record.updateUser)">
- and update_user = #{record.updateUser}
- </if>
- <if test="record.createTime != null and !"".equals(record.createTime)">
- and create_time = #{record.createTime}
- </if>
- <if test="record.createUser != null and !"".equals(record.createUser)">
- and create_user = #{record.createUser}
- </if>
- <if test="record.name != null and !"".equals(record.name)">
- and name = #{record.name}
- </if>
- <if test="record.discription != null and !"".equals(record.discription)">
- and discription = #{record.discription}
- </if>
- <if test="record.discountMoney != null and !"".equals(record.discountMoney)">
- and discount_money = #{record.discountMoney}
- </if>
- <if test="record.limitMoney != null and !"".equals(record.limitMoney)">
- and limit_money = #{record.limitMoney}
- </if>
- <if test="record.typeFlag != null and !"".equals(record.typeFlag)">
- and type_flag = #{record.typeFlag}
- </if>
- <if test="record.statusFlag != null and !"".equals(record.statusFlag)">
- and status_flag = #{record.statusFlag}
- </if>
- <if test="record.availableDays != null and !"".equals(record.availableDays)">
- and available_days = #{record.availableDays}
- </if>
- <if test="record.useTimes != null and !"".equals(record.useTimes)">
- and use_times = #{record.useTimes}
- </if>
- <if test="record.beginTime != null and !"".equals(record.beginTime)">
- and begin_time = #{record.beginTime}
- </if>
- <if test="record.endTime != null and !"".equals(record.endTime)">
- and end_time = #{record.endTime}
- </if>
- <if test="record.onShelf != null and !"".equals(record.onShelf)">
- and on_shelf = #{record.onShelf}
- </if>
- <if test="record.openFlag != null and !"".equals(record.openFlag)">
- and open_flag = #{record.openFlag}
- </if>
- <if test="record.storeId != null and !"".equals(record.storeId)">
- and store_id = #{record.storeId}
- </if>
- <if test="record.searchKey != null and !"".equals(record.searchKey)">
- <trim prefix="and (" suffix=")" prefixOverrides="OR">
- OR name LIKE concat('%',#{record.searchKey},'%')
- OR discription LIKE concat('%',#{record.searchKey},'%')
- OR discount_money LIKE concat('%',#{record.searchKey},'%')
- OR limit_money LIKE concat('%',#{record.searchKey},'%')
- OR on_shelf LIKE concat('%',#{record.searchKey},'%')
- OR open_flag LIKE concat('%',#{record.searchKey},'%')
- OR store_id LIKE concat('%',#{record.searchKey},'%')
- </trim>
- </if>
- <if test="record.advancedQuery != null and !"".equals(record.advancedQuery)">
- <foreach item="item" index="index" collection="record.advancedQuery.split('_;')">
- <choose>
- <when test="item.indexOf('like') != -1">
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
- <if test="detailIndex == 3">
- concat('%',#{itemDetail},'%')
- </if>
- <if test="detailIndex < 3">
- ${itemDetail}
- </if>
- </foreach>
- </when>
- <otherwise>
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
- <if test="detailIndex == 3">
- #{itemDetail}
- </if>
- <if test="detailIndex < 3">
- ${itemDetail}
- </if>
- </foreach>
- </otherwise>
- </choose>
- </foreach>
- </if>
- </where>
- order by
- <if test="record.orderByStr != null and !"".equals(record.orderByStr)">
- <trim suffixOverrides=",">
- <foreach item="item" index="index" separator="," collection="record.orderByStr.split('_;')">
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
- ${itemDetail}
- </foreach>
- </foreach>
- </trim>
- ,
- </if>
- id desc
- </select>
- <select id="queryAllCouponInfo" parameterType="java.util.Map" resultMap="AllCouponInfoResult">
- select
- <include refid="Base_Column_List"/>
- , #{receiveFlag} as receive_flag
- <if test="userId != null and !"".equals(userId)">
- , (
- SELECT
- COUNT(1)
- FROM
- user_coupon
- WHERE
- del_flag = 'N'
- AND coupon_id = coupon_info.id
- and user_id = #{userId}
- ) as user_count
- </if>
- from coupon_info
- <where>
- and del_flag = 'N'
- <if test="idStr != null and !"".equals(idStr)">
- and id in (${idStr})
- </if>
- <if test="id != null and !"".equals(id)">
- and id = #{id}
- </if>
- <if test="delFlag != null and !"".equals(delFlag)">
- and del_flag = #{delFlag}
- </if>
- <if test="updateTime != null and !"".equals(updateTime)">
- and update_time = #{updateTime}
- </if>
- <if test="updateUser != null and !"".equals(updateUser)">
- and update_user = #{updateUser}
- </if>
- <if test="createTime != null and !"".equals(createTime)">
- and create_time = #{createTime}
- </if>
- <if test="createUser != null and !"".equals(createUser)">
- and create_user = #{createUser}
- </if>
- <if test="name != null and !"".equals(name)">
- and name = #{name}
- </if>
- <if test="discription != null and !"".equals(discription)">
- and discription = #{discription}
- </if>
- <if test="discountMoney != null and !"".equals(discountMoney)">
- and discount_money = #{discountMoney}
- </if>
- <if test="limitMoney != null and !"".equals(limitMoney)">
- and limit_money = #{limitMoney}
- </if>
- <if test="typeFlag != null and !"".equals(typeFlag)">
- and type_flag = #{typeFlag}
- </if>
- <if test="statusFlag != null and !"".equals(statusFlag)">
- and status_flag = #{statusFlag}
- </if>
- <if test="availableDays != null and !"".equals(availableDays)">
- and available_days = #{availableDays}
- </if>
- <if test="useTimes != null and !"".equals(useTimes)">
- and use_times = #{useTimes}
- </if>
- <if test="beginTime != null and !"".equals(beginTime)">
- and begin_time = #{beginTime}
- </if>
- <if test="endTime != null and !"".equals(endTime)">
- and end_time = #{endTime}
- </if>
- <if test="onShelf != null and !"".equals(onShelf)">
- and on_shelf = #{onShelf}
- </if>
- <if test="openFlag != null and !"".equals(openFlag)">
- and open_flag = #{openFlag}
- </if>
- <if test="storeId != null and !"".equals(storeId)">
- and store_id = #{storeId}
- </if>
- <if test="searchKey != null and !"".equals(searchKey)">
- <trim prefix="and (" suffix=")" prefixOverrides="OR">
- OR name LIKE concat('%',#{searchKey},'%')
- OR discription LIKE concat('%',#{searchKey},'%')
- OR discount_money LIKE concat('%',#{searchKey},'%')
- OR limit_money LIKE concat('%',#{searchKey},'%')
- OR on_shelf LIKE concat('%',#{searchKey},'%')
- OR open_flag LIKE concat('%',#{searchKey},'%')
- OR store_id LIKE concat('%',#{searchKey},'%')
- </trim>
- </if>
- <if test="advancedQuery != null and !"".equals(advancedQuery)">
- <foreach item="item" index="index" collection="advancedQuery.split('_;')">
- <choose>
- <when test="item.indexOf('like') != -1">
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
- <if test="detailIndex == 3">
- concat('%',#{itemDetail},'%')
- </if>
- <if test="detailIndex < 3">
- ${itemDetail}
- </if>
- </foreach>
- </when>
- <otherwise>
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
- <if test="detailIndex == 3">
- #{itemDetail}
- </if>
- <if test="detailIndex < 3">
- ${itemDetail}
- </if>
- </foreach>
- </otherwise>
- </choose>
- </foreach>
- </if>
- </where>
- order by
- <if test="orderByStr != null and !"".equals(orderByStr)">
- <trim suffixOverrides=",">
- <foreach item="item" index="index" separator="," collection="orderByStr.split('_;')">
- <foreach item="itemDetail" index="detailIndex" collection="item.split('_,')">
- ${itemDetail}
- </foreach>
- </foreach>
- </trim>
- ,
- </if>
- id desc
- </select>
- <select id="queryCouponInfo" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.CouponInfo">
- select
- <include refid="Base_Column_List"/>
- from coupon_info
- <where>
- and del_flag = 'N'
- <if test="id != null and !"".equals(id)">
- and id = #{id}
- </if>
- <if test="delFlag != null and !"".equals(delFlag)">
- and del_flag = #{delFlag}
- </if>
- <if test="updateTime != null and !"".equals(updateTime)">
- and update_time = #{updateTime}
- </if>
- <if test="updateUser != null and !"".equals(updateUser)">
- and update_user = #{updateUser}
- </if>
- <if test="createTime != null and !"".equals(createTime)">
- and create_time = #{createTime}
- </if>
- <if test="createUser != null and !"".equals(createUser)">
- and create_user = #{createUser}
- </if>
- <if test="name != null and !"".equals(name)">
- and name = #{name}
- </if>
- <if test="discription != null and !"".equals(discription)">
- and discription = #{discription}
- </if>
- <if test="discountMoney != null and !"".equals(discountMoney)">
- and discount_money = #{discountMoney}
- </if>
- <if test="limitMoney != null and !"".equals(limitMoney)">
- and limit_money = #{limitMoney}
- </if>
- <if test="typeFlag != null and !"".equals(typeFlag)">
- and type_flag = #{typeFlag}
- </if>
- <if test="statusFlag != null and !"".equals(statusFlag)">
- and status_flag = #{statusFlag}
- </if>
- <if test="availableDays != null and !"".equals(availableDays)">
- and available_days = #{availableDays}
- </if>
- <if test="useTimes != null and !"".equals(useTimes)">
- and use_times = #{useTimes}
- </if>
- <if test="beginTime != null and !"".equals(beginTime)">
- and begin_time = #{beginTime}
- </if>
- <if test="endTime != null and !"".equals(endTime)">
- and end_time = #{endTime}
- </if>
- <if test="onShelf != null and !"".equals(onShelf)">
- and on_shelf = #{onShelf}
- </if>
- <if test="openFlag != null and !"".equals(openFlag)">
- and open_flag = #{openFlag}
- </if>
- <if test="storeId != null and !"".equals(storeId)">
- and store_id = #{storeId}
- </if>
- </where>
- LIMIT 1
- </select>
- <update id="delete">
- UPDATE coupon_info SET del_flag = 'Y'
- where
- <if test="id != null and !"".equals(id)">
- id = #{id,jdbcType=INTEGER}
- </if>
- <if test="idStr != null and !"".equals(idStr)">
- id in (${idStr})
- </if>
- </update>
- <select id="query" parameterType="java.util.Map" resultType="com.izouma.awesomeadmin.model.CouponInfo">
- select
- <include refid="Base_Column_List"/>
- from coupon_info
- <where>
- and del_flag = 'N'
- </where>
- order by id desc
- </select>
- <resultMap id="AllCouponInfoResult" type="com.izouma.awesomeadmin.model.CouponInfo"
- extends="BaseResultMap">
- <association property="storeInfo"
- javaType="com.izouma.awesomeadmin.model.StoreInfo"
- select="com.izouma.awesomeadmin.dao.StoreInfoMapper.queryStoreInfo"
- column="{ id = store_id }"/>
- <collection property="couponDetailList"
- ofType="com.izouma.awesomeadmin.model.CouponDetail"
- select="com.izouma.awesomeadmin.dao.CouponDetailMapper.queryAllCouponDetail"
- column="{ couponId = id, receiveFlag = receive_flag }"/>
- </resultMap>
- </mapper>
|