package com.ruoyi.project.service; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
import com.baomidou.mybatisplus.extension.service.IService; 
 | 
import com.ruoyi.project.domain.ServiceFundflow; 
 | 
  
 | 
/** 
 | 
 * 资金审批流程Service接口 
 | 
 * 
 | 
 * @author ruoyi 
 | 
 * @date 2022-04-27 
 | 
 */ 
 | 
public interface IServiceFundflowService extends IService<ServiceFundflow> { 
 | 
  
 | 
    /** 
 | 
     * 查询资金审批流程列表 
 | 
     * 
 | 
     * @param serviceFundflow 资金审批流程 
 | 
     * @return 资金审批流程集合 
 | 
     */ 
 | 
    public List<ServiceFundflow> queryList(ServiceFundflow serviceFundflow); 
 | 
  
 | 
    public Boolean saveData(ServiceFundflow serviceFundflow); 
 | 
} 
 |