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 { /** * 查询费用申请明细列表 * * @param serviceFunddetail 费用申请明细 * @return 费用申请明细集合 */ public List selectServiceFunddetailList(ServiceFunddetail serviceFunddetail); List selectFundDetailListById(Long id); List getAllDetailsByFDIDLW(Long id); List getAllDetailsByFDIDSH(Long id); List getAllDetailsByFDIDSS(Long id); List getAllDetailsByFDIDYX(Long id); List getAllDetailsByFDIDHZ(Long id); List getAllDetailsByFDIDLWF(Long id); int countItem(@Param("fundid") Long fundid, @Param("itemid") Long itemid); }