| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.project.domain.ServiceFundShared; |
| | | import com.ruoyi.project.domain.ServiceReimbursementShared; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 费用申请主Service接口 |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-03-27 |
| | | */ |
| | | public interface IServiceFundSharedService extends IService<ServiceFundShared> |
| | | { |
| | | public interface IServiceFundSharedService extends IService<ServiceFundShared> { |
| | | |
| | | /** |
| | | * 查询费用申请主列表 |
| | | * |
| | | * |
| | | * @param serviceFundShared 费用申请主 |
| | | * @return 费用申请主集合 |
| | | */ |
| | | public List<ServiceFundShared> queryList(ServiceFundShared serviceFundShared); |
| | | List<ServiceFundShared> queryList(ServiceFundShared serviceFundShared); |
| | | |
| | | List<ServiceFundShared> queryFundShareList(); |
| | | |
| | | List<ServiceFundShared> getFundShareInfoById(Long fundid); |
| | | |
| | | Boolean delfundsharedInfoById(Long fundId,Long serfunid); |
| | | } |