zxl
2025-02-22 cce9ecba0a492b7c2a43e7629514a5845977d5cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.ycl.mapper;
 
import com.ycl.domain.entity.ProjectInvestmentFunding;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.domain.vo.ProjectInvestmentFundingVO;
import com.ycl.domain.form.ProjectInvestmentFundingForm;
import com.ycl.domain.query.ProjectInvestmentFundingQuery;
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 ProjectInvestmentFundingMapper extends BaseMapper<ProjectInvestmentFunding> {
 
    /**
     * id查找项目投资及资金来源情况表
     * @param id
     * @return
     */
    ProjectInvestmentFundingVO getById(Integer id);
 
    /**
    *  分页
    */
    IPage getPage(IPage page, @Param("query") ProjectInvestmentFundingQuery query);
 
}