MaxEmployeeMapper.xml
2 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
<?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.pipihelper.project.feishu.dao.LastMaxPainDao">
<resultMap id="LastMaxPainResultMap" type="com.pipihelper.project.feishu.entity.LastMaxPain">
<id column="id" property="id"/>
<result column="employee_id" property="employeeId"/>
<result column="floor" property="floor"/>
</resultMap>
<sql id="Base_Column_List">
id,employee_id,floor
</sql>
<select id="findById" parameterType="java.lang.Integer" resultMap="LastMaxPainResultMap">
select
<include refid="Base_Column_List"/>
from t_last_max_pain
<where>
id = #{id}
</where>
</select>
<select id="findByFloor" parameterType="java.lang.Integer" resultMap="LastMaxPainResultMap">
select
<include refid="Base_Column_List"/>
from t_last_max_pain
<where>
floor = #{floor}
</where>
</select>
<select id="findBackIndex" resultMap="LastMaxPainResultMap">
select
<include refid="Base_Column_List"/>
from t_last_max_pain
<where>
index >= #{index}
order by index asc
limit #{limit}
</where>
</select>
<insert id="create" useGeneratedKeys="true" keyProperty="id"
parameterType="com.pipihelper.project.feishu.entity.LastMaxPain">
insert into t_last_max_pain (employee_id, floor)
values (#{employeeId},#{floor})
</insert>
<update id="update" parameterType="com.pipihelper.project.feishu.entity.LastMaxPain">
update t_last_max_pain
<set>
<if test="employeeId != null">
employee_id = #{employeeId},
</if>
<if test="floor != null">
floor = #{floor},
</if>
</set>
<where>
id = #{id}
</where>
</update>
</mapper>