yxh
2023-03-04 9f516ef64d7e02aa0636c859c57b4fa52b694a8d
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
35
36
37
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
import com.ruoyi.project.domain.ServiceFund;
import com.ruoyi.project.domain.vo.FundVO;
import com.ruoyi.project.domain.vo.SpFinancialExpensesFundOut;
import com.ruoyi.project.domain.vo.SpFinancialExpensesReimbursementOut;
import org.apache.ibatis.annotations.Param;
 
/**
 * 费用申请主Mapper接口
 * 
 * @author ruoyi
 * @date 2022-01-24
 */
public interface ServiceFundMapper extends BaseMapper<ServiceFund>
{
    /**
     * 查询费用申请主列表
     *
     * @param serviceFund 费用申请主
     * @return 费用申请主集合
     */
    public List<ServiceFund> selectServiceFundList(ServiceFund serviceFund);
 
    List<ServiceFund> getInfoByInfoId(Long infoid);
 
    Long getFundId(Long infoid);
 
    List<FundVO> selectVOList(FundVO fundVO);
 
    List<SpFinancialExpensesFundOut> getListBypower(@Param("PAUSERNO")  String PAUSERNO, @Param("PAFUNDTYPE")  Integer PAFUNDTYPE, @Param("PAAPPLICANT")  String PAAPPLICANT, @Param("PAAPPLICATIONBEGTIME")   String PAAPPLICATIONBEGTIME, @Param("PAAPPLICATIONENDTIME")   String PAAPPLICATIONENDTIME, @Param("PADEPARTMENT")   String PADEPARTMENT, @Param("CHECKFLAG")  Integer CHECKFLAG, @Param("APPLYTYPE")  Integer APPLYTYPE);
 
 
}