yxh
yxh
2025-05-22 8a228c854bfc8e781cc7e3f7f3ca6f500f2392a8
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);
}