puzhibing
2023-07-18 2386300f1ed591e6c46b7f32539cac7f2fd7d434
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;
}