1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.gkhy.safePlatform.account.service;
|
| import com.gkhy.safePlatform.account.model.dto.resp.ProjectRespDTO;
|
| import java.util.List;
|
| public interface ProjectService {
|
| /**
| * @Description: 获取所有启用项目
| */
| List<ProjectRespDTO> getEnableProjectList();
|
| }
|
|