package com.gkhy.safePlatform.account.service.baseService; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.safePlatform.account.entity.user.ProjectInfo; import com.gkhy.safePlatform.account.enums.ProjectStatusEnum; import java.util.List; public interface ProjectInfoService extends IService { /** * @Description: 获取所有启用的项目 */ List getAllProject(ProjectStatusEnum status); ProjectInfo getProjectById(Long projectId); }