package com.smartor.service; 
 | 
  
 | 
import com.smartor.domain.IvrLibaTargetoption; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 指标选项库Service接口 
 | 
 *  
 | 
 * @author ruoyi 
 | 
 * @date 2023-12-14 
 | 
 */ 
 | 
public interface IIvrLibaTargetoptionService  
 | 
{ 
 | 
    /** 
 | 
     * 查询指标选项库 
 | 
     *  
 | 
     * @param targetoptionid 指标选项库主键 
 | 
     * @return 指标选项库 
 | 
     */ 
 | 
    public IvrLibaTargetoption selectIvrLibaTargetoptionByTargetoptionid(Long targetoptionid); 
 | 
  
 | 
    /** 
 | 
     * 查询指标选项库列表 
 | 
     *  
 | 
     * @param ivrLibaTargetoption 指标选项库 
 | 
     * @return 指标选项库集合 
 | 
     */ 
 | 
    public List<IvrLibaTargetoption> selectIvrLibaTargetoptionList(IvrLibaTargetoption ivrLibaTargetoption); 
 | 
  
 | 
    /** 
 | 
     * 新增指标选项库 
 | 
     *  
 | 
     * @param ivrLibaTargetoption 指标选项库 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int insertIvrLibaTargetoption(IvrLibaTargetoption ivrLibaTargetoption); 
 | 
  
 | 
    /** 
 | 
     * 修改指标选项库 
 | 
     *  
 | 
     * @param ivrLibaTargetoption 指标选项库 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int updateIvrLibaTargetoption(IvrLibaTargetoption ivrLibaTargetoption); 
 | 
  
 | 
    /** 
 | 
     * 批量删除指标选项库 
 | 
     *  
 | 
     * @param targetoptionids 需要删除的指标选项库主键集合 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteIvrLibaTargetoptionByTargetoptionids(Long[] targetoptionids); 
 | 
  
 | 
    /** 
 | 
     * 删除指标选项库信息 
 | 
     *  
 | 
     * @param targetoptionid 指标选项库主键 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteIvrLibaTargetoptionByTargetoptionid(Long targetoptionid); 
 | 
} 
 |