Blame view

dal/src/main/resources/META-INF/mybatis/UnionShareRebateLogMapper.xml 4.04 KB
gemingdan authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?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.UnionShareRebateLogMapper" >
  <resultMap id="BaseResultMap" type="com.yoho.unions.dal.model.UnionShareRebateLog" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="rebate_id" property="rebateId" jdbcType="INTEGER" />
    <result column="type" property="type" jdbcType="INTEGER" />
    <result column="last" property="last" jdbcType="INTEGER" />
    <result column="record" property="record" jdbcType="VARCHAR" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, rebate_id, type, last, record, create_time
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from union_share_rebate_log
    where id = #{id,jdbcType=INTEGER}
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from union_share_rebate_log
    where id = #{id,jdbcType=INTEGER}
  </delete>
gemingdan authored
25
  <insert id="insert" useGeneratedKeys="true" keyProperty="id" parameterType="com.yoho.unions.dal.model.UnionShareRebateLog" >
gemingdan authored
26 27 28 29 30 31 32
    insert into union_share_rebate_log (id, rebate_id, type, 
      last, record, create_time
      )
    values (#{id,jdbcType=INTEGER}, #{rebateId,jdbcType=INTEGER}, #{type,jdbcType=INTEGER}, 
      #{last,jdbcType=INTEGER}, #{record,jdbcType=VARCHAR}, #{createTime,jdbcType=INTEGER}
      )
  </insert>
gemingdan authored
33
  <insert id="insertSelective" useGeneratedKeys="true" keyProperty="id" parameterType="com.yoho.unions.dal.model.UnionShareRebateLog" >
gemingdan authored
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
    insert into union_share_rebate_log
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="rebateId != null" >
        rebate_id,
      </if>
      <if test="type != null" >
        type,
      </if>
      <if test="last != null" >
        last,
      </if>
      <if test="record != null" >
        record,
      </if>
      <if test="createTime != null" >
        create_time,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        #{id,jdbcType=INTEGER},
      </if>
      <if test="rebateId != null" >
        #{rebateId,jdbcType=INTEGER},
      </if>
      <if test="type != null" >
        #{type,jdbcType=INTEGER},
      </if>
      <if test="last != null" >
        #{last,jdbcType=INTEGER},
      </if>
      <if test="record != null" >
        #{record,jdbcType=VARCHAR},
      </if>
      <if test="createTime != null" >
        #{createTime,jdbcType=INTEGER},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yoho.unions.dal.model.UnionShareRebateLog" >
    update union_share_rebate_log
    <set >
      <if test="rebateId != null" >
        rebate_id = #{rebateId,jdbcType=INTEGER},
      </if>
      <if test="type != null" >
        type = #{type,jdbcType=INTEGER},
      </if>
      <if test="last != null" >
        last = #{last,jdbcType=INTEGER},
      </if>
      <if test="record != null" >
        record = #{record,jdbcType=VARCHAR},
      </if>
      <if test="createTime != null" >
        create_time = #{createTime,jdbcType=INTEGER},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.yoho.unions.dal.model.UnionShareRebateLog" >
    update union_share_rebate_log
    set rebate_id = #{rebateId,jdbcType=INTEGER},
      type = #{type,jdbcType=INTEGER},
      last = #{last,jdbcType=INTEGER},
      record = #{record,jdbcType=VARCHAR},
      create_time = #{createTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
gemingdan authored
106 107
  <update id="updateRebateIdById" parameterType="com.yoho.unions.dal.model.UnionShareRebateLog" >
    update union_share_rebate_log
gemingdan authored
108
    set rebate_id = #{rebateId,jdbcType=INTEGER}
gemingdan authored
109 110
    where id = #{id,jdbcType=INTEGER}
  </update>
gemingdan authored
111
</mapper>