PayMentMapper.xml
4.08 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?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="cn.runsa.portal.base.dao.PayMentMapper" >
<resultMap id="BaseResultMap" type="cn.runsa.portal.base.entity.PayMent" >
<!--
WARNING - @mbggenerated
-->
<id column="PAY_ID" property="payId" jdbcType="VARCHAR" />
<result column="PAY_NAME" property="payName" jdbcType="VARCHAR" />
<result column="PAY_ICON" property="payIcon" jdbcType="VARCHAR" />
<result column="REC_TIME" property="recTime" jdbcType="TIMESTAMP" />
<result column="REC_USER" property="recUser" jdbcType="BIGINT" />
<result column="REMARK" property="remark" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List" >
<!--
WARNING - @mbggenerated
-->
PAY_ID, PAY_NAME, PAY_ICON, REC_TIME, REC_USER, REMARK
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
<!--
WARNING - @mbggenerated
-->
select
<include refid="Base_Column_List" />
from crm_payment
where PAY_ID = #{payId,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
<!--
WARNING - @mbggenerated
-->
delete from crm_payment
where PAY_ID = #{payId,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="cn.runsa.portal.base.entity.PayMent" >
<!--
WARNING - @mbggenerated
-->
insert into crm_payment (PAY_ID, PAY_NAME, PAY_ICON,
REC_TIME, REC_USER, REMARK
)
values (#{payId,jdbcType=VARCHAR}, #{payName,jdbcType=VARCHAR}, #{payIcon,jdbcType=VARCHAR},
#{recTime,jdbcType=TIMESTAMP}, #{recUser,jdbcType=BIGINT}, #{remark,jdbcType=VARCHAR}
)
</insert>
<insert id="insertSelective" parameterType="cn.runsa.portal.base.entity.PayMent" >
<!--
WARNING - @mbggenerated
-->
insert into crm_payment
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="payId != null" >
PAY_ID,
</if>
<if test="payName != null" >
PAY_NAME,
</if>
<if test="payIcon != null" >
PAY_ICON,
</if>
<if test="recTime != null" >
REC_TIME,
</if>
<if test="recUser != null" >
REC_USER,
</if>
<if test="remark != null" >
REMARK,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="payId != null" >
#{payId,jdbcType=VARCHAR},
</if>
<if test="payName != null" >
#{payName,jdbcType=VARCHAR},
</if>
<if test="payIcon != null" >
#{payIcon,jdbcType=VARCHAR},
</if>
<if test="recTime != null" >
#{recTime,jdbcType=TIMESTAMP},
</if>
<if test="recUser != null" >
#{recUser,jdbcType=BIGINT},
</if>
<if test="remark != null" >
#{remark,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="cn.runsa.portal.base.entity.PayMent" >
<!--
WARNING - @mbggenerated
-->
update crm_payment
<set >
<if test="payName != null" >
PAY_NAME = #{payName,jdbcType=VARCHAR},
</if>
<if test="payIcon != null" >
PAY_ICON = #{payIcon,jdbcType=VARCHAR},
</if>
<if test="recTime != null" >
REC_TIME = #{recTime,jdbcType=TIMESTAMP},
</if>
<if test="recUser != null" >
REC_USER = #{recUser,jdbcType=BIGINT},
</if>
<if test="remark != null" >
REMARK = #{remark,jdbcType=VARCHAR},
</if>
</set>
where PAY_ID = #{payId,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="cn.runsa.portal.base.entity.PayMent" >
<!--
WARNING - @mbggenerated
-->
update crm_payment
set PAY_NAME = #{payName,jdbcType=VARCHAR},
PAY_ICON = #{payIcon,jdbcType=VARCHAR},
REC_TIME = #{recTime,jdbcType=TIMESTAMP},
REC_USER = #{recUser,jdbcType=BIGINT},
REMARK = #{remark,jdbcType=VARCHAR}
where PAY_ID = #{payId,jdbcType=VARCHAR}
</update>
</mapper>