package com.ruoyi.project.mapper; 
 | 
  
 | 
  
 | 
import com.baomidou.mybatisplus.core.mapper.BaseMapper; 
 | 
import com.ruoyi.project.domain.BaseOnlyvalue; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 业务数据唯一值Mapper接口 
 | 
 * 
 | 
 * @author ruoyi 
 | 
 * @date 2023-09-20 
 | 
 */ 
 | 
@Mapper 
 | 
public interface BaseOnlyvalueMapper extends BaseMapper<BaseOnlyvalue> { 
 | 
    /** 
 | 
     * 查询业务数据唯一值列表 
 | 
     * 
 | 
     * @param baseOnlyvalue 业务数据唯一值 
 | 
     * @return 业务数据唯一值集合 
 | 
     */ 
 | 
    public List<BaseOnlyvalue> selectBaseOnlyvalueList(BaseOnlyvalue baseOnlyvalue); 
 | 
} 
 |