package com.gkhy.safePlatform.account.repository; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.safePlatform.account.entity.user.ProjectInfo; import com.gkhy.safePlatform.account.enums.ProjectStatusEnum; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface ProjectInfoRepository extends BaseMapper { List listAllProject(Byte status); ProjectInfo getProjectById(Long projectId); }