fuliqi
2024-11-29 334197c2f176795e78c46baa1271bb9a3c3bf302
business/src/main/java/com/ycl/mapper/ProjectInfoMapper.java
@@ -5,8 +5,11 @@
import com.ycl.domain.entity.ProjectInfo;
import com.ycl.domain.query.ProjectInfoQuery;
import com.ycl.domain.vo.ProjectInfoVO;
import com.ycl.domain.vo.ProjectVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
 * 项目管理基础信息表 Mapper 接口
@@ -22,11 +25,13 @@
     * @param id
     * @return
     */
    ProjectInfoVO getById(Integer id);
    ProjectInfo getById(Integer id);
    /**
    *  分页
    */
    IPage getPage(IPage page, @Param("query") ProjectInfoQuery query);
    List<ProjectVO> homeCount();
}