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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?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.zhitan.system.mapper.SysHolidayMapper">
    
    <resultMap type="com.zhitan.system.domain.SysHoliday" id="SysHolidayResult">
        <id     property="holidayId"      column="holiday_id"      />
        <result property="holidayName"    column="holiday_name"    />
        <result property="holidayDate"    column="holiday_date"    />
        <result property="holidayType"    column="holiday_type"    />
        <result property="status"         column="status"          />
        <result property="createBy"       column="create_by"       />
        <result property="createTime"     column="create_time"     />
        <result property="updateBy"       column="update_by"       />
        <result property="updateTime"     column="update_time"     />
        <result property="remark"         column="remark"          />
    </resultMap>
 
    <sql id="selectSysHolidayVo">
        select holiday_id, holiday_name, holiday_date, holiday_type, status, create_by, create_time, update_by, update_time, remark
        from sys_holiday
    </sql>
 
    <!-- 查询节假日信息 -->
    <select id="selectSysHolidayById" parameterType="Long" resultMap="SysHolidayResult">
        <include refid="selectSysHolidayVo"/>
        where holiday_id = #{holidayId}
    </select>
    
    <!-- 根据日期查询节假日信息 -->
    <select id="selectSysHolidayByDate" parameterType="Date" resultMap="SysHolidayResult">
        <include refid="selectSysHolidayVo"/>
        where holiday_date = #{date}
        and status = '0'
    </select>
    
    <!-- 查询节假日信息列表 -->
    <select id="selectSysHolidayList" parameterType="com.zhitan.system.domain.SysHoliday" resultMap="SysHolidayResult">
        <include refid="selectSysHolidayVo"/>
        <where>  
            <if test="holidayName != null  and holidayName != ''">
                AND holiday_name like concat('%', #{holidayName}, '%')
            </if>
            <if test="holidayDate != null ">
                AND holiday_date = #{holidayDate}
            </if>
            <if test="holidayType != null  and holidayType != ''">
                AND holiday_type = #{holidayType}
            </if>
            <if test="status != null  and status != ''">
                AND status = #{status}
            </if>
        </where>
    </select>
    
    <!-- 新增节假日信息 -->
    <insert id="insertSysHoliday" parameterType="com.zhitan.system.domain.SysHoliday" useGeneratedKeys="true" keyProperty="holidayId">
        insert into sys_holiday
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="holidayName != null and holidayName != ''">
                holiday_name,
            </if>
            <if test="holidayDate != null">
                holiday_date,
            </if>
            <if test="holidayType != null and holidayType != ''">
                holiday_type,
            </if>
            <if test="status != null and status != ''">
                status,
            </if>
            <if test="createBy != null and createBy != ''">
                create_by,
            </if>
            <if test="createTime != null">
                create_time,
            </if>
            <if test="remark != null and remark != ''">
                remark,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="holidayName != null and holidayName != ''">
                #{holidayName},
            </if>
            <if test="holidayDate != null">
                #{holidayDate},
            </if>
            <if test="holidayType != null and holidayType != ''">
                #{holidayType},
            </if>
            <if test="status != null and status != ''">
                #{status},
            </if>
            <if test="createBy != null and createBy != ''">
                #{createBy},
            </if>
            <if test="createTime != null">
                #{createTime},
            </if>
            <if test="remark != null and remark != ''">
                #{remark},
            </if>
        </trim>
    </insert>
 
    <!-- 修改节假日信息 -->
    <update id="updateSysHoliday" parameterType="com.zhitan.system.domain.SysHoliday">
        update sys_holiday
        <trim prefix="SET" suffixOverrides=",">
            <if test="holidayName != null and holidayName != ''">
                holiday_name = #{holidayName},
            </if>
            <if test="holidayDate != null">
                holiday_date = #{holidayDate},
            </if>
            <if test="holidayType != null and holidayType != ''">
                holiday_type = #{holidayType},
            </if>
            <if test="status != null and status != ''">
                status = #{status},
            </if>
            <if test="updateBy != null and updateBy != ''">
                update_by = #{updateBy},
            </if>
            <if test="updateTime != null">
                update_time = #{updateTime},
            </if>
            <if test="remark != null">
                remark = #{remark},
            </if>
        </trim>
        where holiday_id = #{holidayId}
    </update>
 
    <!-- 删除节假日信息 -->
    <delete id="deleteSysHolidayById" parameterType="Long">
        delete from sys_holiday where holiday_id = #{holidayId}
    </delete>
 
    <!-- 批量删除节假日信息 -->
    <delete id="deleteSysHolidayByIds" parameterType="String">
        delete from sys_holiday where holiday_id in 
        <foreach item="holidayId" collection="array" open="(" separator="," close=")">
            #{holidayId}
        </foreach>
    </delete>
</mapper>