package com.ruoyi.project.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import java.util.List;
|
import com.ruoyi.project.domain.ServiceFunddetail;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* 费用申请明细Mapper接口
|
*
|
* @author ruoyi
|
* @date 2022-01-25
|
*/
|
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);
|
}
|