<?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>
|