| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | | package com.ruoyi.project.mapper; |  |   |  |   |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |  | import java.util.List; |  | import com.ruoyi.project.domain.ServiceFundflow; |  |   |  | /** |  |  * 资金审批流程Mapper接口 |  |  *  |  |  * @author ruoyi |  |  * @date 2022-04-27 |  |  */ |  | public interface ServiceFundflowMapper extends BaseMapper<ServiceFundflow> |  | { |  |     /** |  |      * 查询资金审批流程列表 |  |      * |  |      * @param serviceFundflow 资金审批流程 |  |      * @return 资金审批流程集合 |  |      */ |  |     public List<ServiceFundflow> selectServiceFundflowList(ServiceFundflow serviceFundflow); |  | } | 
 |