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
25
26
27
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.VExpertfeeDonor;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * VIEWMapper接口
 *
 * @author ruoyi
 * @date 2024-05-08
 */
@Mapper
public interface VExpertfeeDonorMapper extends BaseMapper<VExpertfeeDonor>
{
    /**
     * 查询VIEW列表
     *
     * @param vExpertfeeDonor VIEW
     * @return VIEW集合
     */
    public List<VExpertfeeDonor> selectVExpertfeeDonorList(VExpertfeeDonor vExpertfeeDonor);
    public List<VExpertfeeDonor> selectVExpertfeeDonorList2(Integer taxId);
}