STATIC_CUSTOM_RESPONSE_BASEMapper.xml
2.4 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
<?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.sunyo.wlpt.base.dao.STATIC_CUSTOM_RESPONSE_BASEMapper" >
<resultMap id="BaseResultMap" type="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
<result column="RESPONSECODE" property="responsecode" jdbcType="VARCHAR" />
<result column="RESPONSETEXT" property="responsetext" jdbcType="VARCHAR" />
<result column="TYPEREMARK" property="typeremark" jdbcType="VARCHAR" />
<result column="TYPE" property="type" jdbcType="VARCHAR" />
<result column="SORTNUM" property="sortnum" jdbcType="DECIMAL" />
<result column="OPERATIONTIME" property="operationtime" jdbcType="TIMESTAMP" />
</resultMap>
<insert id="insert" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
insert into STATIC_CUSTOM_RESPONSE_BASE (RESPONSECODE, RESPONSETEXT, TYPEREMARK,
TYPE, SORTNUM, OPERATIONTIME
)
values (#{responsecode,jdbcType=VARCHAR}, #{responsetext,jdbcType=VARCHAR}, #{typeremark,jdbcType=VARCHAR},
#{type,jdbcType=VARCHAR}, #{sortnum,jdbcType=DECIMAL}, #{operationtime,jdbcType=TIMESTAMP}
)
</insert>
<insert id="insertSelective" parameterType="com.sunyo.wlpt.base.model.STATIC_CUSTOM_RESPONSE_BASE" >
insert into STATIC_CUSTOM_RESPONSE_BASE
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="responsecode != null" >
RESPONSECODE,
</if>
<if test="responsetext != null" >
RESPONSETEXT,
</if>
<if test="typeremark != null" >
TYPEREMARK,
</if>
<if test="type != null" >
TYPE,
</if>
<if test="sortnum != null" >
SORTNUM,
</if>
<if test="operationtime != null" >
OPERATIONTIME,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="responsecode != null" >
#{responsecode,jdbcType=VARCHAR},
</if>
<if test="responsetext != null" >
#{responsetext,jdbcType=VARCHAR},
</if>
<if test="typeremark != null" >
#{typeremark,jdbcType=VARCHAR},
</if>
<if test="type != null" >
#{type,jdbcType=VARCHAR},
</if>
<if test="sortnum != null" >
#{sortnum,jdbcType=DECIMAL},
</if>
<if test="operationtime != null" >
#{operationtime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
</mapper>