liusheng
2024-05-08 39405c053391f29d2f2c0e2c3104bea111e0e460
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);
}