|
@@ -0,0 +1,126 @@
|
|
|
+<?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.ym.mec.biz.dal.dao.SysCouponDao">
|
|
|
+
|
|
|
+ <resultMap type="com.ym.mec.biz.dal.entity.SysCoupon" id="SysCoupon">
|
|
|
+ <result column="id_" property="id" />
|
|
|
+ <result column="name_" property="name" />
|
|
|
+ <result column="description_" property="description" />
|
|
|
+ <result column="status_" property="status" />
|
|
|
+ <result column="type_" property="type" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
|
|
|
+ <result column="face_value_" property="faceValue" />
|
|
|
+ <result column="is_enabled_" property="isEnabled" />
|
|
|
+ <result column="full_amount_" property="fullAmount" />
|
|
|
+ <result column="limit_exchange_num_" property="limitExchangeNum" />
|
|
|
+ <result column="deadline_" property="deadline" />
|
|
|
+ <result column="effective_start_time_" property="effectiveStartTime" />
|
|
|
+ <result column="effective_expire_time_" property="effectiveExpireTime" />
|
|
|
+ <result column="end_date_" property="endDate" />
|
|
|
+ <result column="start_date_" property="startDate" />
|
|
|
+ <result column="stock_count_" property="stockCount" />
|
|
|
+ <result column="consume_num_" property="consumeNum" />
|
|
|
+ <result column="warning_stock_num_" property="warningStockNum" />
|
|
|
+ <result column="create_time_" property="createTime" />
|
|
|
+ <result column="update_time_" property="updateTime" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <select id="get" resultMap="SysCoupon" >
|
|
|
+ SELECT * FROM sys_coupon WHERE id_ = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 全查询 -->
|
|
|
+ <select id="findAll" resultMap="SysCoupon">
|
|
|
+ SELECT * FROM sys_coupon ORDER BY id_
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 向数据库增加一条记录 -->
|
|
|
+ <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.SysCoupon" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
|
|
|
+ INSERT INTO sys_coupon (id_,name_,description_,status_,type_,face_value_,is_enabled_,full_amount_,limit_exchange_num_,deadline_,
|
|
|
+ effective_start_time_, effective_expire_time_,end_date_,start_date_,stock_count_,consume_num_,warning_stock_num_,
|
|
|
+ create_time_,update_time_)
|
|
|
+ VALUES(#{id},#{name},#{description},#{status},#{type, typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{faceValue},#{isEnabled},#{fullAmount},#{limitExchangeNum},#{deadline},
|
|
|
+ #{effectiveStartTime},#{effectiveExpireTime},#{endDate},#{startDate},#{stockCount},#{consumeNum},#{warningStockNum},
|
|
|
+ NOW(), NOW())
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <update id="update" parameterType="com.ym.mec.biz.dal.entity.SysCoupon">
|
|
|
+ UPDATE sys_coupon
|
|
|
+ <set>
|
|
|
+ <if test="isEnabled != null">
|
|
|
+ is_enabled_ = #{isEnabled},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ status_ = #{status},
|
|
|
+ </if>
|
|
|
+ <if test="effectiveExpireTime != null">
|
|
|
+ effective_expire_time_ = #{effectiveExpireTime},
|
|
|
+ </if>
|
|
|
+ <if test="startDate != null">
|
|
|
+ start_date_ = #{startDate},
|
|
|
+ </if>
|
|
|
+ <if test="faceValue != null">
|
|
|
+ face_value_ = #{faceValue},
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ name_ = #{name},
|
|
|
+ </if>
|
|
|
+ <if test="fullAmount != null">
|
|
|
+ full_amount_ = #{fullAmount},
|
|
|
+ </if>
|
|
|
+ <if test="deadline != null">
|
|
|
+ deadline_ = #{deadline},
|
|
|
+ </if>
|
|
|
+ <if test="stockCount != null">
|
|
|
+ stock_count_ = #{stockCount},
|
|
|
+ </if>
|
|
|
+ <if test="endDate != null">
|
|
|
+ end_date_ = #{endDate},
|
|
|
+ </if>
|
|
|
+ <if test="description != null">
|
|
|
+ description_ = #{description},
|
|
|
+ </if>
|
|
|
+ <if test="effectiveStartTime != null">
|
|
|
+ effective_start_time_ = #{effectiveStartTime},
|
|
|
+ </if>
|
|
|
+ <if test="consumeNum != null">
|
|
|
+ consume_num_ = #{consumeNum},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ type_ = #{type, typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
|
+ </if>
|
|
|
+ <if test="limitExchangeNum != null">
|
|
|
+ limit_exchange_num_ = #{limitExchangeNum},
|
|
|
+ </if>
|
|
|
+ <if test="warningStockNum != null">
|
|
|
+ warning_stock_num_ = #{warningStockNum},
|
|
|
+ </if>
|
|
|
+ update_time_ = NOW()
|
|
|
+ </set>
|
|
|
+ WHERE id_ = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <!-- 根据主键删除一条记录 -->
|
|
|
+ <delete id="delete" >
|
|
|
+ DELETE FROM sys_coupon WHERE id_ = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <!-- 分页查询 -->
|
|
|
+ <select id="queryPage" resultMap="SysCoupon" parameterType="map">
|
|
|
+ SELECT * FROM sys_coupon ORDER BY id_ <include refid="global.limit"/>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 查询当前表的总记录数 -->
|
|
|
+ <select id="queryCount" resultType="int">
|
|
|
+ SELECT COUNT(*) FROM sys_coupon
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="lockCoupon" resultMap="SysCoupon">
|
|
|
+ SELECT * FROM sys_coupon WHERE id_ = #{id} FOR UPDATE
|
|
|
+ </select>
|
|
|
+</mapper>
|