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