12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.system.service;
- import java.util.List;
- import com.ruoyi.system.domain.BomanReservatConfigTime;
- /**
- * 预约时段配置Service接口
- *
- * @author ruoyi
- * @date 2024-02-27
- */
- public interface IBomanReservatConfigTimeService
- {
- /**
- * 查询预约时段配置
- *
- * @param reservatConfigTimeId 预约时段配置主键
- * @return 预约时段配置
- */
- public BomanReservatConfigTime selectBomanReservatConfigTimeByReservatConfigTimeId(Long reservatConfigTimeId);
- /**
- * 查询预约时段配置列表
- *
- * @param bomanReservatConfigTime 预约时段配置
- * @return 预约时段配置集合
- */
- public List<BomanReservatConfigTime> selectBomanReservatConfigTimeList(BomanReservatConfigTime bomanReservatConfigTime);
- /**
- * 新增预约时段配置
- *
- * @param bomanReservatConfigTime 预约时段配置
- * @return 结果
- */
- public int insertBomanReservatConfigTime(BomanReservatConfigTime bomanReservatConfigTime);
- /**
- * 修改预约时段配置
- *
- * @param bomanReservatConfigTime 预约时段配置
- * @return 结果
- */
- public int updateBomanReservatConfigTime(BomanReservatConfigTime bomanReservatConfigTime);
- /**
- * 批量删除预约时段配置
- *
- * @param reservatConfigTimeIds 需要删除的预约时段配置主键集合
- * @return 结果
- */
- public int deleteBomanReservatConfigTimeByReservatConfigTimeIds(Long[] reservatConfigTimeIds);
- /**
- * 删除预约时段配置信息
- *
- * @param reservatConfigTimeId 预约时段配置主键
- * @return 结果
- */
- public int deleteBomanReservatConfigTimeByReservatConfigTimeId(Long reservatConfigTimeId);
- }
|