liusheng
2024-05-10 76ca9e469bc3c4e76bd11e8ba789f717f75d7b86
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.VExpertfeeExpert;
 
import java.util.List;
 
/**
 * VIEWService接口
 * 
 * @author ruoyi
 * @date 2024-03-18
 */
public interface IVExpertfeeExpertService extends IService<VExpertfeeExpert>
{
 
    /**
     * 查询VIEW列表
     * 
     * @param vExpertfeeExpert VIEW
     * @return VIEW集合
     */
    public List<VExpertfeeExpert> queryList(VExpertfeeExpert vExpertfeeExpert);
}