| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.other.entity.Site; |
| | | import com.dsh.other.model.QuerySiteInfoVo; |
| | | import com.dsh.other.model.QuerySiteList; |
| | | import com.dsh.other.model.QuerySiteListVo; |
| | | import com.dsh.other.model.QuerySiteTimes; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @date 2023/7/13 16:10 |
| | | */ |
| | | public interface ISiteService extends IService<Site> { |
| | | |
| | | |
| | | /** |
| | | * 获取场地列表 |
| | | * @param querySiteList |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | List<QuerySiteListVo> querySiteList(QuerySiteList querySiteList) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 获取场地详情 |
| | | * @param id |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | QuerySiteInfoVo querySiteInfo(Integer id) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 获取场地预约日期数据 |
| | | * @param id |
| | | * @param day |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | List<QuerySiteTimes> querySiteTimes(Integer id, String day) throws Exception; |
| | | } |