SellerLevelFuncMapper.xml 2.88 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.SellerLevelFuncMapper">
  <resultMap id="BaseResultMap" type="com.yohoufo.dal.order.model.SellerLevelFunc">
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="enter_type" jdbcType="INTEGER" property="enterType" />
    <result column="level" jdbcType="INTEGER" property="level" />
    <result column="func_list" jdbcType="VARCHAR" property="funcList" />
  </resultMap>
  <sql id="Base_Column_List">
    id, enter_type, level, func_list
  </sql>
  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
    select 
    <include refid="Base_Column_List" />
    from seller_level_func
    where id = #{id,jdbcType=INTEGER}
  </select>


  <select id="selectAll" resultMap="BaseResultMap">
    select
    <include refid="Base_Column_List" />
    from seller_level_func
  </select>


  <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.SellerLevelFunc" useGeneratedKeys="true">
    insert into seller_level_func (enter_type, level, func_list
      )
    values (#{enterType,jdbcType=INTEGER}, #{level,jdbcType=INTEGER}, #{funcList,jdbcType=VARCHAR}
      )
  </insert>
  <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.yohoufo.dal.order.model.SellerLevelFunc" useGeneratedKeys="true">
    insert into seller_level_func
    <trim prefix="(" suffix=")" suffixOverrides=",">
      <if test="enterType != null">
        enter_type,
      </if>
      <if test="level != null">
        level,
      </if>
      <if test="funcList != null">
        func_list,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides=",">
      <if test="enterType != null">
        #{enterType,jdbcType=INTEGER},
      </if>
      <if test="level != null">
        #{level,jdbcType=INTEGER},
      </if>
      <if test="funcList != null">
        #{funcList,jdbcType=VARCHAR},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yohoufo.dal.order.model.SellerLevelFunc">
    update seller_level_func
    <set>
      <if test="enterType != null">
        enter_type = #{enterType,jdbcType=INTEGER},
      </if>
      <if test="level != null">
        level = #{level,jdbcType=INTEGER},
      </if>
      <if test="funcList != null">
        func_list = #{funcList,jdbcType=VARCHAR},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.yohoufo.dal.order.model.SellerLevelFunc">
    update seller_level_func
    set enter_type = #{enterType,jdbcType=INTEGER},
      level = #{level,jdbcType=INTEGER},
      func_list = #{funcList,jdbcType=VARCHAR}
    where id = #{id,jdbcType=INTEGER}
  </update>
</mapper>