package com.ruoyi.project.service;
|
|
import java.util.List;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.common.core.domain.AjaxResult;
|
import com.ruoyi.project.domain.ServiceFundflowrule;
|
import com.ruoyi.project.domain.vo.CheckFundVO;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
/**
|
* 资金审批规则Service接口
|
*
|
* @author ruoyi
|
* @date 2022-04-27
|
*/
|
public interface IServiceFundflowruleService extends IService<ServiceFundflowrule>
|
{
|
|
/**
|
* 查询资金审批规则列表
|
*
|
* @param serviceFundflowrule 资金审批规则
|
* @return 资金审批规则集合
|
*/
|
public List<ServiceFundflowrule> queryList(ServiceFundflowrule serviceFundflowrule);
|
}
|