liusheng
2024-03-19 519886a70d630e3cdd6c0f40f55fcebc6e780dc5
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.util.List;
 
import com.ruoyi.project.domain.FunddetailReqVo;
import com.ruoyi.project.domain.ServiceFunddetail;
import com.ruoyi.project.domain.SpStatBonus;
import com.ruoyi.project.domain.vo.SpFinancialExpensesFundOut;
import com.ruoyi.project.domain.vo.TaxMoneyByItemEO;
import com.ruoyi.project.domain.vo.TaxMoneySumEO;
import com.ruoyi.project.domain.vo.TaxMoneyVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * 费用申请明细Mapper接口
 *
 * @author ruoyi
 * @date 2022-01-25
 */
@Mapper
public interface ServiceFunddetailMapper extends BaseMapper<ServiceFunddetail> {
    /**
     * 查询费用申请明细列表
     *
     * @param serviceFunddetail 费用申请明细
     * @return 费用申请明细集合
     */
    public List<ServiceFunddetail> selectServiceFunddetailList(ServiceFunddetail serviceFunddetail);
 
    List<ServiceFunddetail> selectFundDetailListById(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDLW(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDSH(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDSS(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDYX(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDHZ(Long id);
 
    List<ServiceFunddetail> getAllDetailsByFDIDLWF(Long id);
 
    int countItem(@Param("fundid") Long fundid, @Param("itemid") Long itemid);
 
    public List<ServiceFunddetail> getDataBybeneficiaryNo(FunddetailReqVo funddetailReqVo);
 
    List<ServiceFunddetail> getTaxBeforeByBeneFiciaryNo(TaxMoneyVO taxMoneyV);
 
    boolean updateTaxTime(ServiceFunddetail serviceFunddetail);
 
    TaxMoneySumEO getTaxSum(TaxMoneyByItemEO taxMoneyByItemEO);
 
    List<ServiceFunddetail> totlaTax(List<Long> fundids);
 
}