Blame view

dal/src/main/resources/META-INF/mybatis/order/InviteActivityMapper.xml 2.72 KB
tanling authored
1 2 3 4 5 6 7 8 9
<?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.yohoufo.dal.order.InviteActivityMapper" >
  <resultMap id="BaseResultMap" type="com.yohoufo.dal.order.model.InviteActivity" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="name" property="name" jdbcType="VARCHAR" />
    <result column="start_time" property="startTime" jdbcType="INTEGER" />
    <result column="end_time" property="endTime" jdbcType="INTEGER" />
    <result column="reward_days" property="rewardDays" jdbcType="INTEGER" />
LUOXC authored
10 11
    <result column="product_sort_limit" property="productSortLimit" jdbcType="VARCHAR" />
    <result column="order_attributes_limit" property="orderAttributesLimit" jdbcType="VARCHAR" />
tanling authored
12 13 14
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
LUOXC authored
15
    id, name, start_time, end_time, reward_days,product_sort_limit,order_attributes_limit, create_time
tanling authored
16
  </sql>
tanling authored
17 18 19 20 21 22 23 24 25 26


  <select id="selectLastActivtiy" resultMap="BaseResultMap"  >
    select
    <include refid="Base_Column_List" />
    from invite_activity
    order by id desc limit 1;
  </select>

tanling authored
27 28 29 30 31 32
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from invite_activity
    where id = #{id,jdbcType=INTEGER}
  </select>
tanling authored
33
tanling authored
34
  <insert id="insert" parameterType="com.yohoufo.dal.order.model.InviteActivity" >
LUOXC authored
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
    insert into invite_activity (
      id,
      name,
      start_time,
      end_time,
      reward_days,
      product_sort_limit,
      order_attributes_limit,
      create_time
    )
    values (
      #{id,jdbcType=INTEGER},
      #{name,jdbcType=VARCHAR},
      #{startTime,jdbcType=INTEGER},
      #{endTime,jdbcType=INTEGER},
      #{rewardDays,jdbcType=INTEGER},
      #{productSortLimit,jdbcType=VARCHAR},
      #{orderAttributesLimit,jdbcType=VARCHAR},
      #{createTime,jdbcType=INTEGER}
    )
tanling authored
55
  </insert>
LUOXC authored
56
tanling authored
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
  <update id="updateByPrimaryKeySelective" parameterType="com.yohoufo.dal.order.model.InviteActivity" >
    update invite_activity
    <set >
      <if test="name != null" >
        name = #{name,jdbcType=VARCHAR},
      </if>
      <if test="startTime != null" >
        start_time = #{startTime,jdbcType=INTEGER},
      </if>
      <if test="endTime != null" >
        end_time = #{endTime,jdbcType=INTEGER},
      </if>
      <if test="rewardDays != null" >
        reward_days = #{rewardDays,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        create_time = #{createTime,jdbcType=INTEGER},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
LUOXC authored
78
tanling authored
79
</mapper>