package com.ruoyi.project.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.project.domain.VExpertfeeExpert;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* VIEWMapper接口
|
*
|
* @author ruoyi
|
* @date 2024-03-18
|
*/
|
@Mapper
|
public interface VExpertfeeExpertMapper extends BaseMapper<VExpertfeeExpert> {
|
/**
|
* 查询VIEW列表
|
*
|
* @param vExpertfeeExpert VIEW
|
* @return VIEW集合
|
*/
|
public List<VExpertfeeExpert> selectVExpertfeeExpertList(VExpertfeeExpert vExpertfeeExpert);
|
|
public List<VExpertfeeExpert> selectVExpertfeeExpertListByFaxId(Integer faxId);
|
}
|