package com.ycl.mapper;
|
|
import com.ycl.domain.entity.ProjectInvestmentInfo;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ycl.domain.vo.ProjectInvestmentInfoVO;
|
import com.ycl.domain.form.ProjectInvestmentInfoForm;
|
import com.ycl.domain.query.ProjectInvestmentInfoQuery;
|
import java.util.List;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* 投资项目基础信息表 Mapper 接口
|
*
|
* @author flq
|
* @since 2024-11-27
|
*/
|
@Mapper
|
public interface ProjectInvestmentInfoMapper extends BaseMapper<ProjectInvestmentInfo> {
|
|
/**
|
* id查找投资项目基础信息表
|
* @param id
|
* @return
|
*/
|
ProjectInvestmentInfoVO getById(Integer id);
|
|
/**
|
* 分页
|
*/
|
IPage getPage(IPage page, @Param("query") ProjectInvestmentInfoQuery query);
|
|
}
|