1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.dsh.other.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.dsh.other.entity.SiteType;
| import com.dsh.other.model.BaseVo;
|
| import java.util.List;
|
| /**
| * @author zhibing.pu
| * @date 2023/7/17 10:58
| */
| public interface ISiteTypeService extends IService<SiteType> {
|
|
| /**
| * 获取场地分类
| * @return
| * @throws Exception
| */
| List<BaseVo> querySiteType() throws Exception;
| }
|
|