liusheng
2024-03-20 d91dfa2b823f6644f1e58dd4770f57e0d0cef08f
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.VExpertfeeTotal;
 
import java.util.List;
 
/**
 * VIEWService接口
 * 
 * @author ruoyi
 * @date 2024-03-18
 */
public interface IVExpertfeeTotalService extends IService<VExpertfeeTotal>
{
 
    /**
     * 查询VIEW列表
     * 
     * @param vExpertfeeTotal VIEW
     * @return VIEW集合
     */
    public List<VExpertfeeTotal> queryList(VExpertfeeTotal vExpertfeeTotal);
}