package com.ycl.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.ycl.domain.entity.ProjectInfo;
|
import com.ycl.domain.query.ProjectInfoQuery;
|
import com.ycl.domain.vo.ProjectInfoVO;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* 项目管理基础信息表 Mapper 接口
|
*
|
* @author flq
|
* @since 2024-11-22
|
*/
|
@Mapper
|
public interface ProjectInfoMapper extends BaseMapper<ProjectInfo> {
|
|
/**
|
* id查找项目管理基础信息表
|
* @param id
|
* @return
|
*/
|
ProjectInfoVO getById(Integer id);
|
|
/**
|
* 分页
|
*/
|
IPage getPage(IPage page, @Param("query") ProjectInfoQuery query);
|
|
}
|