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);
|
}
|