liusheng
2024-07-29 fbf5402f03820ebc702871fc4c4933c024ff3087
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.project.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.VExpertfeeDonor;
 
import java.util.List;
 
/**
 * VIEWService接口
 *
 * @author ruoyi
 * @date 2024-05-08
 */
public interface IVExpertfeeDonorService extends IService<VExpertfeeDonor>
{
 
    /**
     * 查询VIEW列表
     *
     * @param vExpertfeeDonor VIEW
     * @return VIEW集合
     */
    public List<VExpertfeeDonor> queryList(VExpertfeeDonor vExpertfeeDonor);
}