1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.sinata.system.service;
|
| import com.sinata.system.domain.SysDepartment;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.sinata.system.domain.vo.SysDepartmentVO;
|
| import java.util.List;
|
| /**
| * <p>
| * 区域表 服务类
| * </p>
| *
| * @author mitao
| * @since 2024-12-02
| */
| public interface SysDepartmentService extends IService<SysDepartment> {
| /**
| * 获取区域树
| * @return
| */
| List<SysDepartmentVO> listByType(Integer type);
| }
|
|