OrdersPayMapper.xml 6.8 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.yohoufo.dal.order.OrdersPayMapper" >
  <resultMap id="BaseResultMap" type="com.yohoufo.dal.order.model.OrdersPay" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="order_code" property="orderCode" jdbcType="BIGINT" />
    <result column="uid" property="uid" jdbcType="INTEGER" />
    <result column="payment" property="payment" jdbcType="INTEGER" />
    <result column="amount" property="amount" jdbcType="DECIMAL" />
    <result column="pay_order_code" property="payOrderCode" jdbcType="VARCHAR" />
    <result column="pay_level" property="payLevel" jdbcType="INTEGER" />
    <result column="serial_no" property="serialNo" jdbcType="VARCHAR" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
    <result column="attach" property="attach" jdbcType="VARCHAR" />
  </resultMap>
  <sql id="Base_Column_List" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    id, order_code, uid, payment, amount, pay_order_code, pay_level, serial_no, create_time, attach
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    select 
    <include refid="Base_Column_List" />
    from orders_pay
    where id = #{id,jdbcType=INTEGER}
  </select>
  
  <select id="selectOrdersPay" resultMap="BaseResultMap"  >
    select 
    <include refid="Base_Column_List" />
    from orders_pay
    where order_code = #{orderCode,jdbcType=BIGINT} 
      and uid = #{uid,jdbcType=INTEGER}

	  limit 1
  </select>    
  

  <insert id="insert" parameterType="com.yohoufo.dal.order.model.OrdersPay" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    insert into orders_pay (id, order_code, uid, 
      payment, amount, pay_order_code, 
      pay_level, serial_no, create_time
      )
    values (#{id,jdbcType=INTEGER}, #{orderCode,jdbcType=BIGINT}, #{uid,jdbcType=INTEGER}, 
      #{payment,jdbcType=INTEGER}, #{amount,jdbcType=DECIMAL}, #{payOrderCode,jdbcType=VARCHAR}, 
      #{payLevel,jdbcType=INTEGER}, #{serialNo,jdbcType=VARCHAR}, #{createTime,jdbcType=INTEGER}
      )
  </insert>
  <insert id="insertSelective" parameterType="com.yohoufo.dal.order.model.OrdersPay" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    insert into orders_pay
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="orderCode != null" >
        order_code,
      </if>
      <if test="uid != null" >
        uid,
      </if>
      <if test="payment != null" >
        payment,
      </if>
      <if test="amount != null" >
        amount,
      </if>
      <if test="payOrderCode != null" >
        pay_order_code,
      </if>
      <if test="payLevel != null" >
        pay_level,
      </if>
      <if test="serialNo != null" >
        serial_no,
      </if>
      <if test="createTime != null" >
        create_time,
      </if>
      <if test="attach != null" >
        attach,
      </if>      
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        #{id,jdbcType=INTEGER},
      </if>
      <if test="orderCode != null" >
        #{orderCode,jdbcType=BIGINT},
      </if>
      <if test="uid != null" >
        #{uid,jdbcType=INTEGER},
      </if>
      <if test="payment != null" >
        #{payment,jdbcType=INTEGER},
      </if>
      <if test="amount != null" >
        #{amount,jdbcType=DECIMAL},
      </if>
      <if test="payOrderCode != null" >
        #{payOrderCode,jdbcType=VARCHAR},
      </if>
      <if test="payLevel != null" >
        #{payLevel,jdbcType=INTEGER},
      </if>
      <if test="serialNo != null" >
        #{serialNo,jdbcType=VARCHAR},
      </if>
      <if test="createTime != null" >
        #{createTime,jdbcType=INTEGER},
      </if>
      <if test="attach != null" >
        #{attach,jdbcType=VARCHAR},
      </if>      
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yohoufo.dal.order.model.OrdersPay" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    update orders_pay
    <set >
      <if test="orderCode != null" >
        order_code = #{orderCode,jdbcType=BIGINT},
      </if>
      <if test="uid != null" >
        uid = #{uid,jdbcType=INTEGER},
      </if>
      <if test="payment != null" >
        payment = #{payment,jdbcType=INTEGER},
      </if>
      <if test="amount != null" >
        amount = #{amount,jdbcType=DECIMAL},
      </if>
      <if test="payOrderCode != null" >
        pay_order_code = #{payOrderCode,jdbcType=VARCHAR},
      </if>
      <if test="payLevel != null" >
        pay_level = #{payLevel,jdbcType=INTEGER},
      </if>
      <if test="serialNo != null" >
        serial_no = #{serialNo,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.yohoufo.dal.order.model.OrdersPay" >
    <!--
      WARNING - @mbggenerated
      This element is automatically generated by MyBatis Generator, do not modify.
    -->
    update orders_pay
    set order_code = #{orderCode,jdbcType=BIGINT},
      uid = #{uid,jdbcType=INTEGER},
      payment = #{payment,jdbcType=INTEGER},
      amount = #{amount,jdbcType=DECIMAL},
      pay_order_code = #{payOrderCode,jdbcType=VARCHAR},
      pay_level = #{payLevel,jdbcType=INTEGER},
      serial_no = #{serialNo,jdbcType=VARCHAR},
      create_time = #{createTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
  
  <update id="addMoney" parameterType="com.yohoufo.dal.order.model.OrdersPay" >
    update orders_pay set amount = amount + #{amount,jdbcType=DECIMAL} where order_code = #{orderCode,jdbcType=BIGINT} 
      and uid = #{uid,jdbcType=INTEGER} and amount + #{amount,jdbcType=DECIMAL} &gt;= 0
  </update>

  <select id="selectAllByOrderCodes" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
    from orders_pay
    where order_code IN
    <foreach collection="orderCodes" item="orderCode" separator="," open="(" close=")">
      #{orderCode,jdbcType=BIGINT}
    </foreach>
  </select>
</mapper>