liusheng
2023-05-06 2b04605163633cbc4c1c801f31211d1ae0ccf0f5
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
38
39
40
41
42
43
44
45
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
import com.ruoyi.project.domain.ServiceReimbursement;
import com.ruoyi.project.domain.ServiceReimbursementEo;
import com.ruoyi.project.domain.dto.ServiceReimbursementDto;
import com.ruoyi.project.domain.vo.SpFinancialExpensesReimbursementOut;
import org.apache.ibatis.annotations.Param;
 
/**
 * 报销申请Mapper接口
 * 
 * @author ruoyi
 * @date 2022-01-24
 */
public interface ServiceReimbursementMapper extends BaseMapper<ServiceReimbursement>
{
    /**
     * 查询报销申请列表
     *
     * @param serviceReimbursement 报销申请
     * @return 报销申请集合
     */
    public List<ServiceReimbursement> selectServiceReimbursementList(ServiceReimbursement serviceReimbursement);
 
    Long getMaxId();
 
    List<ServiceReimbursement> selectSearchList(ServiceReimbursementDto serviceReimbursementdto);
 
    List<SpFinancialExpensesReimbursementOut> 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);
 
    List<ServiceReimbursement> getInfoByInfoId(Long infoid);
 
    List<ServiceReimbursement> getInfoByInfoIdRelatives(Long infoid);
 
    /**
     *
     * @param serviceReimbursementEo
     * @return
     */
    List<ServiceReimbursementEo> getRDInfoByItem(ServiceReimbursementEo serviceReimbursementEo);
 
}