RuleAttendanceMainMapper.xml
5.19 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
<?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.ruoyi.mapper.RuleAttendanceMainMapper">
<resultMap id="BaseResultMap" type="com.ruoyi.domain.RuleAttendanceMain">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="jobCode" column="job_code" jdbcType="VARCHAR"/>
<result property="workingHourPlan" column="working_hour_plan" jdbcType="INTEGER"/>
<result property="workingHourType" column="working_hour_type" jdbcType="TINYINT"/>
<result property="firstWorkSignInTime" column="first_work_sign_in_time" jdbcType="TIMESTAMP"/>
<result property="firstSignInWorkingRange" column="first_sign_in_working_range" jdbcType="INTEGER"/>
<result property="firstQuittingSignInTime" column="first_quitting_sign_in_time" jdbcType="TIMESTAMP"/>
<result property="firstSignInQuittingRange" column="first_sign_in_quitting_range" jdbcType="INTEGER"/>
<result property="signInTimeOutRange" column="sign_in_time_out_range" jdbcType="INTEGER"/>
<result property="secondWorkSignInTime" column="second_work_sign_in_time" jdbcType="TIMESTAMP"/>
<result property="secondSignInWorkingRange" column="second_sign_in_working_range" jdbcType="INTEGER"/>
<result property="secondQuittingSignInTime" column="second_quitting_sign_in_time" jdbcType="TIMESTAMP"/>
<result property="secondSignInQuittingRange" column="second_sign_in_quitting_range" jdbcType="INTEGER"/>
<result property="schedulingDate" column="scheduling_date" jdbcType="DATE"/>
<result property="posts" column="posts" jdbcType="VARCHAR"/>
<result property="ruleDictName" column="rule_dict_name" jdbcType="VARCHAR"/>
<result property="workFlag" column="work_flag" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id,`name`,job_code,
working_hour_plan,working_hour_type,first_work_sign_in_time,
first_sign_in_working_range,first_quitting_sign_in_time,first_sign_in_quitting_range,
sign_in_time_out_range,second_work_sign_in_time,second_sign_in_working_range,
second_quitting_sign_in_time,second_sign_in_quitting_range,scheduling_date,work_flag
</sql>
<update id="updateByIdTotalQuantity">
<foreach collection="mainList" item="main" index="index" separator=";">
update rule_attendance_main set
working_hour_plan = #{main.workingHourPlan},
working_hour_type = #{main.workingHourType},
first_work_sign_in_time = #{main.firstWorkSignInTime},
first_sign_in_working_range = #{main.firstSignInWorkingRange},
first_quitting_sign_in_time = #{main.firstQuittingSignInTime},
first_sign_in_quitting_range = #{main.firstSignInQuittingRange},
sign_in_time_out_range = #{main.signInTimeOutRange},
second_work_sign_in_time = #{main.secondWorkSignInTime},
second_sign_in_working_range = #{main.secondSignInWorkingRange},
second_quitting_sign_in_time = #{main.secondQuittingSignInTime},
second_sign_in_quitting_range = #{main.secondSignInQuittingRange},
work_flag = #{main.workFlag}
where
job_code IN
<foreach collection="vo.jobCode" index="index" item="item" open="(" close=")" separator=",">
#{item}
</foreach>
and scheduling_date = #{main.schedulingDate}
</foreach>
</update>
<delete id="deleteByJobCodeTotalRecord">
delete from rule_attendance_main
where job_code IN
<foreach collection="jobCode" index="index" item="item" separator="," open="(" close=")">
#{item}
</foreach>
and scheduling_date >= #{startDate}
and scheduling_date <= #{endDate}
</delete>
<select id="queryNowMonthDate" resultType="com.ruoyi.domain.RuleAttendanceMain">
select job_code,name,posts,first_work_sign_in_time,first_quitting_sign_in_time,second_work_sign_in_time,second_quitting_sign_in_time,scheduling_date,work_flag
from rule_attendance_main
<where>
DATE_FORMAT(scheduling_date,'%Y-%m') = #{vo.date}
<if test="vo.jobCode != null and vo.jobCode != ''">
and job_code = #{vo.jobCode}
</if>
<if test="vo.name != null and vo.name != ''">
and `name` = #{vo.name}
</if>
<if test="vo.fleetName != null and vo.fleetName != ''">
and fleet_name = #{vo.fleetName}
</if>
<if test="vo.posts != null and vo.posts != ''">
and posts = #{vo.posts}
</if>
<if test="jobCodes!=null and jobCodes.size() > 0">
and job_code IN
<foreach collection="jobCodes" item="item" open="(" close=")" separator="," index="index">
#{item}
</foreach>
</if>
</where>
</select>
</mapper>