节假日设置
This commit is contained in:
parent
1d2e7d5e3a
commit
7a8fc18cd4
@ -0,0 +1,113 @@
|
||||
package com.ktg.mes.cal.controller;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import cn.hutool.core.collection.CollUtil;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.PutMapping;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import com.ktg.common.annotation.Log;
|
||||
import com.ktg.common.core.controller.BaseController;
|
||||
import com.ktg.common.core.domain.AjaxResult;
|
||||
import com.ktg.common.enums.BusinessType;
|
||||
import com.ktg.mes.cal.domain.CalHoliday;
|
||||
import com.ktg.mes.cal.service.ICalHolidayService;
|
||||
import com.ktg.common.utils.poi.ExcelUtil;
|
||||
import com.ktg.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 节假日设置Controller
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-06-08
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/mes/cal/calholiday")
|
||||
public class CalHolidayController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ICalHolidayService calHolidayService;
|
||||
|
||||
/**
|
||||
* 查询节假日设置列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('mes:cal:calholiday:list')")
|
||||
@GetMapping("/list")
|
||||
public AjaxResult list(CalHoliday calHoliday)
|
||||
{
|
||||
List<CalHoliday> list = calHolidayService.selectCalHolidayList(calHoliday);
|
||||
return AjaxResult.success(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出节假日设置列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('mes:cal:calholiday:export')")
|
||||
@Log(title = "节假日设置", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, CalHoliday calHoliday)
|
||||
{
|
||||
List<CalHoliday> list = calHolidayService.selectCalHolidayList(calHoliday);
|
||||
ExcelUtil<CalHoliday> util = new ExcelUtil<CalHoliday>(CalHoliday.class);
|
||||
util.exportExcel(response, list, "节假日设置数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取节假日设置详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('mes:cal:calholiday:query')")
|
||||
@GetMapping(value = "/{holidayId}")
|
||||
public AjaxResult getInfo(@PathVariable("holidayId") Long holidayId)
|
||||
{
|
||||
return AjaxResult.success(calHolidayService.selectCalHolidayByHolidayId(holidayId));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增节假日设置
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('mes:cal:calholiday:add')")
|
||||
@Log(title = "节假日设置", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody CalHoliday calHoliday)
|
||||
{
|
||||
CalHoliday param = new CalHoliday();
|
||||
param.setTheDay(calHoliday.getTheDay());
|
||||
List<CalHoliday> days = calHolidayService.selectCalHolidayList(param);
|
||||
if(CollUtil.isNotEmpty(days)){
|
||||
calHoliday.setHolidayId(days.get(0).getHolidayId());
|
||||
return toAjax(calHolidayService.updateCalHoliday(calHoliday));
|
||||
}else{
|
||||
return toAjax(calHolidayService.insertCalHoliday(calHoliday));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改节假日设置
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('mes:cal:calholiday:edit')")
|
||||
@Log(title = "节假日设置", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody CalHoliday calHoliday)
|
||||
{
|
||||
return toAjax(calHolidayService.updateCalHoliday(calHoliday));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除节假日设置
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('mes:cal:calholiday:remove')")
|
||||
@Log(title = "节假日设置", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{holidayIds}")
|
||||
public AjaxResult remove(@PathVariable Long[] holidayIds)
|
||||
{
|
||||
return toAjax(calHolidayService.deleteCalHolidayByHolidayIds(holidayIds));
|
||||
}
|
||||
}
|
155
ktg-mes/src/main/java/com/ktg/mes/cal/domain/CalHoliday.java
Normal file
155
ktg-mes/src/main/java/com/ktg/mes/cal/domain/CalHoliday.java
Normal file
@ -0,0 +1,155 @@
|
||||
package com.ktg.mes.cal.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ktg.common.annotation.Excel;
|
||||
import com.ktg.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 节假日设置对象 cal_holiday
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-06-08
|
||||
*/
|
||||
public class CalHoliday extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 流水号 */
|
||||
private Long holidayId;
|
||||
|
||||
/** 日期 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date theDay;
|
||||
|
||||
/** 日期类型 */
|
||||
@Excel(name = "日期类型")
|
||||
private String holidayType;
|
||||
|
||||
/** 开始时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date startTime;
|
||||
|
||||
/** 结束时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date endTime;
|
||||
|
||||
/** 预留字段1 */
|
||||
private String attr1;
|
||||
|
||||
/** 预留字段2 */
|
||||
private String attr2;
|
||||
|
||||
/** 预留字段3 */
|
||||
private Long attr3;
|
||||
|
||||
/** 预留字段4 */
|
||||
private Long attr4;
|
||||
|
||||
public void setHolidayId(Long holidayId)
|
||||
{
|
||||
this.holidayId = holidayId;
|
||||
}
|
||||
|
||||
public Long getHolidayId()
|
||||
{
|
||||
return holidayId;
|
||||
}
|
||||
public void setTheDay(Date theDay)
|
||||
{
|
||||
this.theDay = theDay;
|
||||
}
|
||||
|
||||
public Date getTheDay()
|
||||
{
|
||||
return theDay;
|
||||
}
|
||||
public void setHolidayType(String holidayType)
|
||||
{
|
||||
this.holidayType = holidayType;
|
||||
}
|
||||
|
||||
public String getHolidayType()
|
||||
{
|
||||
return holidayType;
|
||||
}
|
||||
public void setStartTime(Date startTime)
|
||||
{
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
public Date getStartTime()
|
||||
{
|
||||
return startTime;
|
||||
}
|
||||
public void setEndTime(Date endTime)
|
||||
{
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public Date getEndTime()
|
||||
{
|
||||
return endTime;
|
||||
}
|
||||
public void setAttr1(String attr1)
|
||||
{
|
||||
this.attr1 = attr1;
|
||||
}
|
||||
|
||||
public String getAttr1()
|
||||
{
|
||||
return attr1;
|
||||
}
|
||||
public void setAttr2(String attr2)
|
||||
{
|
||||
this.attr2 = attr2;
|
||||
}
|
||||
|
||||
public String getAttr2()
|
||||
{
|
||||
return attr2;
|
||||
}
|
||||
public void setAttr3(Long attr3)
|
||||
{
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public Long getAttr3()
|
||||
{
|
||||
return attr3;
|
||||
}
|
||||
public void setAttr4(Long attr4)
|
||||
{
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public Long getAttr4()
|
||||
{
|
||||
return attr4;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("holidayId", getHolidayId())
|
||||
.append("theDay", getTheDay())
|
||||
.append("holidayType", getHolidayType())
|
||||
.append("startTime", getStartTime())
|
||||
.append("endTime", getEndTime())
|
||||
.append("remark", getRemark())
|
||||
.append("attr1", getAttr1())
|
||||
.append("attr2", getAttr2())
|
||||
.append("attr3", getAttr3())
|
||||
.append("attr4", getAttr4())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ktg.mes.cal.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ktg.mes.cal.domain.CalHoliday;
|
||||
|
||||
/**
|
||||
* 节假日设置Mapper接口
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-06-08
|
||||
*/
|
||||
public interface CalHolidayMapper
|
||||
{
|
||||
/**
|
||||
* 查询节假日设置
|
||||
*
|
||||
* @param holidayId 节假日设置主键
|
||||
* @return 节假日设置
|
||||
*/
|
||||
public CalHoliday selectCalHolidayByHolidayId(Long holidayId);
|
||||
|
||||
/**
|
||||
* 查询节假日设置列表
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 节假日设置集合
|
||||
*/
|
||||
public List<CalHoliday> selectCalHolidayList(CalHoliday calHoliday);
|
||||
|
||||
/**
|
||||
* 新增节假日设置
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertCalHoliday(CalHoliday calHoliday);
|
||||
|
||||
/**
|
||||
* 修改节假日设置
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateCalHoliday(CalHoliday calHoliday);
|
||||
|
||||
/**
|
||||
* 删除节假日设置
|
||||
*
|
||||
* @param holidayId 节假日设置主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteCalHolidayByHolidayId(Long holidayId);
|
||||
|
||||
/**
|
||||
* 批量删除节假日设置
|
||||
*
|
||||
* @param holidayIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteCalHolidayByHolidayIds(Long[] holidayIds);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ktg.mes.cal.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ktg.mes.cal.domain.CalHoliday;
|
||||
|
||||
/**
|
||||
* 节假日设置Service接口
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-06-08
|
||||
*/
|
||||
public interface ICalHolidayService
|
||||
{
|
||||
/**
|
||||
* 查询节假日设置
|
||||
*
|
||||
* @param holidayId 节假日设置主键
|
||||
* @return 节假日设置
|
||||
*/
|
||||
public CalHoliday selectCalHolidayByHolidayId(Long holidayId);
|
||||
|
||||
/**
|
||||
* 查询节假日设置列表
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 节假日设置集合
|
||||
*/
|
||||
public List<CalHoliday> selectCalHolidayList(CalHoliday calHoliday);
|
||||
|
||||
/**
|
||||
* 新增节假日设置
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertCalHoliday(CalHoliday calHoliday);
|
||||
|
||||
/**
|
||||
* 修改节假日设置
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateCalHoliday(CalHoliday calHoliday);
|
||||
|
||||
/**
|
||||
* 批量删除节假日设置
|
||||
*
|
||||
* @param holidayIds 需要删除的节假日设置主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteCalHolidayByHolidayIds(Long[] holidayIds);
|
||||
|
||||
/**
|
||||
* 删除节假日设置信息
|
||||
*
|
||||
* @param holidayId 节假日设置主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteCalHolidayByHolidayId(Long holidayId);
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
package com.ktg.mes.cal.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.ktg.common.utils.DateUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ktg.mes.cal.mapper.CalHolidayMapper;
|
||||
import com.ktg.mes.cal.domain.CalHoliday;
|
||||
import com.ktg.mes.cal.service.ICalHolidayService;
|
||||
|
||||
/**
|
||||
* 节假日设置Service业务层处理
|
||||
*
|
||||
* @author yinjinlu
|
||||
* @date 2022-06-08
|
||||
*/
|
||||
@Service
|
||||
public class CalHolidayServiceImpl implements ICalHolidayService
|
||||
{
|
||||
@Autowired
|
||||
private CalHolidayMapper calHolidayMapper;
|
||||
|
||||
/**
|
||||
* 查询节假日设置
|
||||
*
|
||||
* @param holidayId 节假日设置主键
|
||||
* @return 节假日设置
|
||||
*/
|
||||
@Override
|
||||
public CalHoliday selectCalHolidayByHolidayId(Long holidayId)
|
||||
{
|
||||
return calHolidayMapper.selectCalHolidayByHolidayId(holidayId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询节假日设置列表
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 节假日设置
|
||||
*/
|
||||
@Override
|
||||
public List<CalHoliday> selectCalHolidayList(CalHoliday calHoliday)
|
||||
{
|
||||
return calHolidayMapper.selectCalHolidayList(calHoliday);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增节假日设置
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertCalHoliday(CalHoliday calHoliday)
|
||||
{
|
||||
calHoliday.setCreateTime(DateUtils.getNowDate());
|
||||
return calHolidayMapper.insertCalHoliday(calHoliday);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改节假日设置
|
||||
*
|
||||
* @param calHoliday 节假日设置
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateCalHoliday(CalHoliday calHoliday)
|
||||
{
|
||||
calHoliday.setUpdateTime(DateUtils.getNowDate());
|
||||
return calHolidayMapper.updateCalHoliday(calHoliday);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除节假日设置
|
||||
*
|
||||
* @param holidayIds 需要删除的节假日设置主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteCalHolidayByHolidayIds(Long[] holidayIds)
|
||||
{
|
||||
return calHolidayMapper.deleteCalHolidayByHolidayIds(holidayIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除节假日设置信息
|
||||
*
|
||||
* @param holidayId 节假日设置主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteCalHolidayByHolidayId(Long holidayId)
|
||||
{
|
||||
return calHolidayMapper.deleteCalHolidayByHolidayId(holidayId);
|
||||
}
|
||||
}
|
107
ktg-mes/src/main/resources/mapper/cal/CalHolidayMapper.xml
Normal file
107
ktg-mes/src/main/resources/mapper/cal/CalHolidayMapper.xml
Normal file
@ -0,0 +1,107 @@
|
||||
<?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.ktg.mes.cal.mapper.CalHolidayMapper">
|
||||
|
||||
<resultMap type="CalHoliday" id="CalHolidayResult">
|
||||
<result property="holidayId" column="holiday_id" />
|
||||
<result property="theDay" column="the_day" />
|
||||
<result property="holidayType" column="holiday_type" />
|
||||
<result property="startTime" column="start_time" />
|
||||
<result property="endTime" column="end_time" />
|
||||
<result property="remark" column="remark" />
|
||||
<result property="attr1" column="attr1" />
|
||||
<result property="attr2" column="attr2" />
|
||||
<result property="attr3" column="attr3" />
|
||||
<result property="attr4" column="attr4" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectCalHolidayVo">
|
||||
select holiday_id, the_day, holiday_type, start_time, end_time, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from cal_holiday
|
||||
</sql>
|
||||
|
||||
<select id="selectCalHolidayList" parameterType="CalHoliday" resultMap="CalHolidayResult">
|
||||
<include refid="selectCalHolidayVo"/>
|
||||
<where>
|
||||
<if test="theDay != null "> and the_day = #{theDay}</if>
|
||||
<if test="holidayType != null and holidayType != ''"> and holiday_type = #{holidayType}</if>
|
||||
<if test="startTime != null "> and start_time = #{startTime}</if>
|
||||
<if test="endTime != null "> and end_time = #{endTime}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectCalHolidayByHolidayId" parameterType="Long" resultMap="CalHolidayResult">
|
||||
<include refid="selectCalHolidayVo"/>
|
||||
where holiday_id = #{holidayId}
|
||||
</select>
|
||||
|
||||
<insert id="insertCalHoliday" parameterType="CalHoliday" useGeneratedKeys="true" keyProperty="holidayId">
|
||||
insert into cal_holiday
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="theDay != null">the_day,</if>
|
||||
<if test="holidayType != null">holiday_type,</if>
|
||||
<if test="startTime != null">start_time,</if>
|
||||
<if test="endTime != null">end_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="attr1 != null">attr1,</if>
|
||||
<if test="attr2 != null">attr2,</if>
|
||||
<if test="attr3 != null">attr3,</if>
|
||||
<if test="attr4 != null">attr4,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="theDay != null">#{theDay},</if>
|
||||
<if test="holidayType != null">#{holidayType},</if>
|
||||
<if test="startTime != null">#{startTime},</if>
|
||||
<if test="endTime != null">#{endTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="attr1 != null">#{attr1},</if>
|
||||
<if test="attr2 != null">#{attr2},</if>
|
||||
<if test="attr3 != null">#{attr3},</if>
|
||||
<if test="attr4 != null">#{attr4},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateCalHoliday" parameterType="CalHoliday">
|
||||
update cal_holiday
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="theDay != null">the_day = #{theDay},</if>
|
||||
<if test="holidayType != null">holiday_type = #{holidayType},</if>
|
||||
<if test="startTime != null">start_time = #{startTime},</if>
|
||||
<if test="endTime != null">end_time = #{endTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="attr1 != null">attr1 = #{attr1},</if>
|
||||
<if test="attr2 != null">attr2 = #{attr2},</if>
|
||||
<if test="attr3 != null">attr3 = #{attr3},</if>
|
||||
<if test="attr4 != null">attr4 = #{attr4},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
</trim>
|
||||
where holiday_id = #{holidayId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteCalHolidayByHolidayId" parameterType="Long">
|
||||
delete from cal_holiday where holiday_id = #{holidayId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteCalHolidayByHolidayIds" parameterType="String">
|
||||
delete from cal_holiday where holiday_id in
|
||||
<foreach item="holidayId" collection="array" open="(" separator="," close=")">
|
||||
#{holidayId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
Loading…
Reference in New Issue
Block a user