SellerOrderMetaMapper.xml 4.39 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.SellerOrderMetaMapper">
  <resultMap id="BaseResultMap" type="com.yohoufo.dal.order.model.SellerOrderMeta">
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="skup" jdbcType="INTEGER" property="skup" />
    <result column="uid" jdbcType="INTEGER" property="uid" />
    <result column="meta_key" jdbcType="VARCHAR" property="metaKey" />
    <result column="meta_value" jdbcType="VARCHAR" property="metaValue" />
  </resultMap>
  <sql id="Base_Column_List">
    id, skup, uid, meta_key, meta_value
  </sql>
  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
    select 
    <include refid="Base_Column_List" />
    from seller_order_meta
    where id = #{id,jdbcType=INTEGER}
  </select>

  <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.SellerOrderMeta" useGeneratedKeys="true">
    insert into seller_order_meta (skup, uid, meta_key, 
      meta_value)
    values (#{skup,jdbcType=INTEGER}, #{uid,jdbcType=INTEGER}, #{metaKey,jdbcType=VARCHAR}, 
      #{metaValue,jdbcType=VARCHAR})
  </insert>


  <select id="selectByMetaKey" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
    from seller_order_meta
    where uid = #{uid,jdbcType=INTEGER}
    and skup = #{skup,jdbcType=BIGINT}
    and meta_key = #{metaKey,jdbcType=VARCHAR}
    limit 1
  </select>


  <insert id="insertBatch">
    insert into seller_order_meta (skup, uid, meta_key,
    meta_value)
    values
    <foreach collection="records" item="record" separator=",">
      (#{record.skup,jdbcType=INTEGER}, #{record.uid,jdbcType=INTEGER}, #{record.metaKey,jdbcType=VARCHAR},
      #{record.metaValue,jdbcType=VARCHAR})
    </foreach>

  </insert>

  <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.SellerOrderMeta" useGeneratedKeys="true">
    insert into seller_order_meta
    <trim prefix="(" suffix=")" suffixOverrides=",">
      <if test="skup != null">
        skup,
      </if>
      <if test="uid != null">
        uid,
      </if>
      <if test="metaKey != null">
        meta_key,
      </if>
      <if test="metaValue != null">
        meta_value,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides=",">
      <if test="skup != null">
        #{skup,jdbcType=INTEGER},
      </if>
      <if test="uid != null">
        #{uid,jdbcType=INTEGER},
      </if>
      <if test="metaKey != null">
        #{metaKey,jdbcType=VARCHAR},
      </if>
      <if test="metaValue != null">
        #{metaValue,jdbcType=VARCHAR},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yohoufo.dal.order.model.SellerOrderMeta">
    update seller_order_meta
    <set>
      <if test="skup != null">
        skup = #{skup,jdbcType=INTEGER},
      </if>
      <if test="uid != null">
        uid = #{uid,jdbcType=INTEGER},
      </if>
      <if test="metaKey != null">
        meta_key = #{metaKey,jdbcType=VARCHAR},
      </if>
      <if test="metaValue != null">
        meta_value = #{metaValue,jdbcType=VARCHAR},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>

  <update id="updateByPrimaryKeys">
    update seller_order_meta
    <set>
      <if test="condition.metaValue != null">
        meta_value = #{condition.metaValue,jdbcType=VARCHAR},
      </if>
    </set>
    where meta_key = #{condition.metaKey,jdbcType=VARCHAR} and skup in
    <foreach collection="skups" item="skup" open="(" close=")" separator=",">
      #{skup,jdbcType=INTEGER}
    </foreach>

  </update>

  <update id="updateByPrimaryKey" parameterType="com.yohoufo.dal.order.model.SellerOrderMeta">
    update seller_order_meta
    set skup = #{skup,jdbcType=INTEGER},
      uid = #{uid,jdbcType=INTEGER},
      meta_key = #{metaKey,jdbcType=VARCHAR},
      meta_value = #{metaValue,jdbcType=VARCHAR}
    where id = #{id,jdbcType=INTEGER}
  </update>

  <select id="selectBySkup" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
    from seller_order_meta
    where  skup = #{skup,jdbcType=BIGINT}
  </select>
</mapper>