1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.VExpertfeeTotal;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * VIEWMapper接口
 *
 * @author ruoyi
 * @date 2024-03-18
 */
@Mapper
public interface VExpertfeeTotalMapper extends BaseMapper<VExpertfeeTotal> {
    /**
     * 查询VIEW列表
     *
     * @param vExpertfeeTotal VIEW
     * @return VIEW集合
     */
    public List<VExpertfeeTotal> selectVExpertfeeTotalList(VExpertfeeTotal vExpertfeeTotal);
 
    public List<VExpertfeeTotal> selectVExpertfeeTotalListByTaxId(Integer taxId);
}