123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.ruoyi.system.mapper;
- import java.util.List;
- import com.ruoyi.system.domain.ClockHolidays;
- /**
- * 节假日时间Mapper接口
- *
- * @author boman
- * @date 2024-11-27
- */
- public interface ClockHolidaysMapper
- {
- /**
- * 查询节假日时间
- *
- * @param id 节假日时间主键
- * @return 节假日时间
- */
- public ClockHolidays selectClockHolidaysById(Long id);
- /**
- * 查询节假日时间列表
- *
- * @param clockHolidays 节假日时间
- * @return 节假日时间集合
- */
- public List<ClockHolidays> selectClockHolidaysList(ClockHolidays clockHolidays);
- /**
- * 新增节假日时间
- *
- * @param clockHolidays 节假日时间
- * @return 结果
- */
- public int insertClockHolidays(ClockHolidays clockHolidays);
- /**
- * 修改节假日时间
- *
- * @param clockHolidays 节假日时间
- * @return 结果
- */
- public int updateClockHolidays(ClockHolidays clockHolidays);
- /**
- * 删除节假日时间
- *
- * @param id 节假日时间主键
- * @return 结果
- */
- public int deleteClockHolidaysById(Long id);
- /**
- * 批量删除节假日时间
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteClockHolidaysByIds(Long[] ids);
- List<ClockHolidays> selectClockHolidaysMonthList(ClockHolidays clockHoliday);
- }
|