LocationUsersMapper.xml
1.8 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
<?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.energy.location.dao.LocationUsersMapper" >
<resultMap id="BaseResultMap" type="com.sunyo.energy.location.model.LocationUsers" >
<result column="username" property="username" jdbcType="VARCHAR" />
<result column="phone" property="phone" jdbcType="VARCHAR" />
<result column="wmId" property="wmid" jdbcType="VARCHAR" />
<result column="eeId" property="eeid" jdbcType="VARCHAR" />
</resultMap>
<select id="selectAll" resultMap="BaseResultMap">
select
*
from
location_users
</select>
<insert id="insert" parameterType="com.sunyo.energy.location.model.LocationUsers" >
insert into location_users (username, phone, wmId,
eeId)
values (#{username,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{wmid,jdbcType=VARCHAR},
#{eeid,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.sunyo.energy.location.model.LocationUsers" >
insert into location_users
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="username != null" >
username,
</if>
<if test="phone != null" >
phone,
</if>
<if test="wmid != null" >
wmId,
</if>
<if test="eeid != null" >
eeId,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="username != null" >
#{username,jdbcType=VARCHAR},
</if>
<if test="phone != null" >
#{phone,jdbcType=VARCHAR},
</if>
<if test="wmid != null" >
#{wmid,jdbcType=VARCHAR},
</if>
<if test="eeid != null" >
#{eeid,jdbcType=VARCHAR},
</if>
</trim>
</insert>
</mapper>