UnionShareOrdersActivityMapper.xml 9.89 KB
<?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.yoho.unions.dal.UnionShareOrdersActivityMapper" >
  <resultMap id="BaseResultMap" type="com.yoho.unions.dal.model.UnionShareOrdersActivity" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="activity_name" property="activityName" jdbcType="VARCHAR" />
    <result column="type" property="type" jdbcType="INTEGER" />
    <result column="extra_uid_type" property="extraUidType" jdbcType="INTEGER" />
    <result column="need_skn" property="needSkn" jdbcType="INTEGER" />
    <result column="collage" property="collage" jdbcType="INTEGER" />
    <result column="is_new" property="isNew" jdbcType="TINYINT" />
    <result column="new_days" property="newDays" jdbcType="INTEGER" />
    <result column="uids_type" property="uidsType" jdbcType="INTEGER" />
    <result column="amount" property="amount" jdbcType="DECIMAL" />
    <result column="order_amount" property="orderAmount" jdbcType="DECIMAL" />
    <result column="percent" property="percent" jdbcType="INTEGER" />
    <result column="progress" property="progress" jdbcType="INTEGER" />
    <result column="start_time" property="startTime" jdbcType="INTEGER" />
    <result column="end_time" property="endTime" jdbcType="INTEGER" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
    <result column="status" property="status" jdbcType="INTEGER" />
    <result column="priority" property="priority" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, activity_name, type, need_skn,collage, is_new,new_days,uids_type, amount,order_amount, percent, progress, start_time,
    end_time, create_time, status, priority,extra_uid_type
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from union_share_orders_activity
    where id = #{id,jdbcType=INTEGER}
  </select>
  <select id="selectByDate" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select
    <include refid="Base_Column_List" />
    from union_share_orders_activity
    where status=1 and start_time &lt; #{time,jdbcType=INTEGER} and end_time &gt; #{time,jdbcType=INTEGER}
    order by priority desc
  </select>
  <select id="selectWaitListByDate" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select
    <include refid="Base_Column_List" />
    from union_share_orders_activity
    where status=1 and type=3 and progress=0 and end_time &lt; #{time,jdbcType=INTEGER}
  </select>
  <select id="selectLastDaysIngActivity" resultMap="BaseResultMap"  >
    select
    <include refid="Base_Column_List" />
    from union_share_orders_activity
    where status=1 and type=#{type,jdbcType=INTEGER} and start_time &lt;= #{endTime,jdbcType=INTEGER} and end_time >= #{startTime,jdbcType=INTEGER}
    order by priority desc
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from union_share_orders_activity
    where id = #{id,jdbcType=INTEGER}
  </delete>
  <insert id="insert" parameterType="com.yoho.unions.dal.model.UnionShareOrdersActivity" >
    insert into union_share_orders_activity (id, activity_name, type, 
      need_skn,collage, is_new,new_days,uids_type, amount,order_amount,
      percent, progress, start_time, 
      end_time, create_time, status, 
      priority,extra_uid_type)
    values (#{id,jdbcType=INTEGER}, #{activityName,jdbcType=VARCHAR}, #{type,jdbcType=INTEGER}, 
      #{needSkn,jdbcType=INTEGER},#{collage,jdbcType=INTEGER}, #{isNew,jdbcType=TINYINT},#{newDays,jdbcType=INTEGER}
      ,#{uidsType,jdbcType=INTEGER}, #{amount,jdbcType=DECIMAL}, #{orderAmount,jdbcType=DECIMAL},
      #{percent,jdbcType=INTEGER}, #{progress,jdbcType=INTEGER}, #{startTime,jdbcType=INTEGER}, 
      #{endTime,jdbcType=INTEGER}, #{createTime,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, 
      #{priority,jdbcType=INTEGER},#{extraUidType,jdbcType=INTEGER})
  </insert>
  <insert id="insertSelective" parameterType="com.yoho.unions.dal.model.UnionShareOrdersActivity" >
    insert into union_share_orders_activity
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="activityName != null" >
        activity_name,
      </if>
      <if test="type != null" >
        type,
      </if>
      <if test="needSkn != null" >
        need_skn,
      </if>
      <if test="collage != null" >
        collage,
      </if>
      <if test="isNew != null" >
        is_new,
      </if>
      <if test="newDays != null" >
        new_days,
      </if>
      <if test="uidsType != null" >
        uids_type,
      </if>
      <if test="amount != null" >
        amount,
      </if>
      <if test="orderAmount != null" >
        order_amount,
      </if>
      <if test="percent != null" >
        percent,
      </if>
      <if test="progress != null" >
        progress,
      </if>
      <if test="startTime != null" >
        start_time,
      </if>
      <if test="endTime != null" >
        end_time,
      </if>
      <if test="createTime != null" >
        create_time,
      </if>
      <if test="status != null" >
        status,
      </if>
      <if test="priority != null" >
        priority,
      </if>
      <if test="extraUidType != null" >
        extra_uid_type,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        #{id,jdbcType=INTEGER},
      </if>
      <if test="activityName != null" >
        #{activityName,jdbcType=VARCHAR},
      </if>
      <if test="type != null" >
        #{type,jdbcType=INTEGER},
      </if>
      <if test="needSkn != null" >
        #{needSkn,jdbcType=INTEGER},
      </if>
      <if test="collage != null" >
        #{collage,jdbcType=INTEGER},
      </if>
      <if test="isNew != null" >
        #{isNew,jdbcType=TINYINT},
      </if>
      <if test="newDays != null" >
        #{newDays,jdbcType=INTEGER},
      </if>
      <if test="uidsType != null" >
        #{uidsType,jdbcType=INTEGER},
      </if>
      <if test="amount != null" >
        #{amount,jdbcType=DECIMAL},
      </if>
      <if test="orderAmount != null" >
        #{orderAmount,jdbcType=DECIMAL},
      </if>
      <if test="percent != null" >
        #{percent,jdbcType=INTEGER},
      </if>
      <if test="progress != null" >
        #{progress,jdbcType=INTEGER},
      </if>
      <if test="startTime != null" >
        #{startTime,jdbcType=INTEGER},
      </if>
      <if test="endTime != null" >
        #{endTime,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        #{createTime,jdbcType=INTEGER},
      </if>
      <if test="status != null" >
        #{status,jdbcType=INTEGER},
      </if>
      <if test="priority != null" >
        #{priority,jdbcType=INTEGER},
      </if>
      <if test="extraUidType != null" >
        #{extraUidType,jdbcType=INTEGER},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yoho.unions.dal.model.UnionShareOrdersActivity" >
    update union_share_orders_activity
    <set >
      <if test="activityName != null" >
        activity_name = #{activityName,jdbcType=VARCHAR},
      </if>
      <if test="type != null" >
        type = #{type,jdbcType=INTEGER},
      </if>
      <if test="needSkn != null" >
        need_skn = #{needSkn,jdbcType=INTEGER},
      </if>
      <if test="collage != null" >
        collage = #{collage,jdbcType=INTEGER},
      </if>
      <if test="isNew != null" >
        is_new = #{isNew,jdbcType=TINYINT},
      </if>
      <if test="newDays != null" >
        new_days = #{newDays,jdbcType=INTEGER},
      </if>
      <if test="uidsType != null" >
        uids_type = #{uidsType,jdbcType=INTEGER},
      </if>
      <if test="amount != null" >
        amount = #{amount,jdbcType=DECIMAL},
      </if>
      <if test="orderAmount != null" >
        order_amount = #{orderAmount,jdbcType=DECIMAL},
      </if>
      <if test="percent != null" >
        percent = #{percent,jdbcType=INTEGER},
      </if>
      <if test="progress != null" >
        progress = #{progress,jdbcType=INTEGER},
      </if>
      <if test="startTime != null" >
        start_time = #{startTime,jdbcType=INTEGER},
      </if>
      <if test="endTime != null" >
        end_time = #{endTime,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        create_time = #{createTime,jdbcType=INTEGER},
      </if>
      <if test="status != null" >
        status = #{status,jdbcType=INTEGER},
      </if>
      <if test="priority != null" >
        priority = #{priority,jdbcType=INTEGER},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.yoho.unions.dal.model.UnionShareOrdersActivity" >
    update union_share_orders_activity
    set activity_name = #{activityName,jdbcType=VARCHAR},
      type = #{type,jdbcType=INTEGER},
      need_skn = #{needSkn,jdbcType=INTEGER},
      collage = #{collage,jdbcType=INTEGER},
      is_new = #{isNew,jdbcType=TINYINT},
      new_days = #{newDays,jdbcType=INTEGER},
      uids_type = #{uidsType,jdbcType=INTEGER},
      amount = #{amount,jdbcType=DECIMAL},
      order_amount = #{orderAmount,jdbcType=DECIMAL},
      percent = #{percent,jdbcType=INTEGER},
      progress = #{progress,jdbcType=INTEGER},
      start_time = #{startTime,jdbcType=INTEGER},
      end_time = #{endTime,jdbcType=INTEGER},
      create_time = #{createTime,jdbcType=INTEGER},
      status = #{status,jdbcType=INTEGER},
      priority = #{priority,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateStatusById" >
    update union_share_orders_activity
    set progress = #{newProgress,jdbcType=INTEGER},
    update_time = #{updateTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER} and progress = #{oldProgress,jdbcType=INTEGER}
  </update>
</mapper>