SellerLevelFuncMapper.xml
2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
<?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>