IBomanReservatConfigTimeService.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.system.service;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.BomanReservatConfigTime;
  4. /**
  5. * 预约时段配置Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2024-02-27
  9. */
  10. public interface IBomanReservatConfigTimeService
  11. {
  12. /**
  13. * 查询预约时段配置
  14. *
  15. * @param reservatConfigTimeId 预约时段配置主键
  16. * @return 预约时段配置
  17. */
  18. public BomanReservatConfigTime selectBomanReservatConfigTimeByReservatConfigTimeId(Long reservatConfigTimeId);
  19. /**
  20. * 查询预约时段配置列表
  21. *
  22. * @param bomanReservatConfigTime 预约时段配置
  23. * @return 预约时段配置集合
  24. */
  25. public List<BomanReservatConfigTime> selectBomanReservatConfigTimeList(BomanReservatConfigTime bomanReservatConfigTime);
  26. /**
  27. * 新增预约时段配置
  28. *
  29. * @param bomanReservatConfigTime 预约时段配置
  30. * @return 结果
  31. */
  32. public int insertBomanReservatConfigTime(BomanReservatConfigTime bomanReservatConfigTime);
  33. /**
  34. * 修改预约时段配置
  35. *
  36. * @param bomanReservatConfigTime 预约时段配置
  37. * @return 结果
  38. */
  39. public int updateBomanReservatConfigTime(BomanReservatConfigTime bomanReservatConfigTime);
  40. /**
  41. * 批量删除预约时段配置
  42. *
  43. * @param reservatConfigTimeIds 需要删除的预约时段配置主键集合
  44. * @return 结果
  45. */
  46. public int deleteBomanReservatConfigTimeByReservatConfigTimeIds(Long[] reservatConfigTimeIds);
  47. /**
  48. * 删除预约时段配置信息
  49. *
  50. * @param reservatConfigTimeId 预约时段配置主键
  51. * @return 结果
  52. */
  53. public int deleteBomanReservatConfigTimeByReservatConfigTimeId(Long reservatConfigTimeId);
  54. }