ClockHolidaysMapper.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.ClockHolidays;
  4. /**
  5. * 节假日时间Mapper接口
  6. *
  7. * @author boman
  8. * @date 2024-11-27
  9. */
  10. public interface ClockHolidaysMapper
  11. {
  12. /**
  13. * 查询节假日时间
  14. *
  15. * @param id 节假日时间主键
  16. * @return 节假日时间
  17. */
  18. public ClockHolidays selectClockHolidaysById(Long id);
  19. /**
  20. * 查询节假日时间列表
  21. *
  22. * @param clockHolidays 节假日时间
  23. * @return 节假日时间集合
  24. */
  25. public List<ClockHolidays> selectClockHolidaysList(ClockHolidays clockHolidays);
  26. /**
  27. * 新增节假日时间
  28. *
  29. * @param clockHolidays 节假日时间
  30. * @return 结果
  31. */
  32. public int insertClockHolidays(ClockHolidays clockHolidays);
  33. /**
  34. * 修改节假日时间
  35. *
  36. * @param clockHolidays 节假日时间
  37. * @return 结果
  38. */
  39. public int updateClockHolidays(ClockHolidays clockHolidays);
  40. /**
  41. * 删除节假日时间
  42. *
  43. * @param id 节假日时间主键
  44. * @return 结果
  45. */
  46. public int deleteClockHolidaysById(Long id);
  47. /**
  48. * 批量删除节假日时间
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteClockHolidaysByIds(Long[] ids);
  54. List<ClockHolidays> selectClockHolidaysMonthList(ClockHolidays clockHoliday);
  55. }