package com.smartor.service; 
 | 
  
 | 
import com.smartor.domain.IvrLibaExtemplate; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 通过模板Service接口 
 | 
 *  
 | 
 * @author ruoyi 
 | 
 * @date 2023-12-27 
 | 
 */ 
 | 
public interface IIvrLibaExtemplateService  
 | 
{ 
 | 
    /** 
 | 
     * 查询通过模板 
 | 
     *  
 | 
     * @param ID 通过模板主键 
 | 
     * @return 通过模板 
 | 
     */ 
 | 
    public IvrLibaExtemplate selectIvrLibaExtemplateByID(String ID); 
 | 
  
 | 
    /** 
 | 
     * 查询通过模板列表 
 | 
     *  
 | 
     * @param ivrLibaExtemplate 通过模板 
 | 
     * @return 通过模板集合 
 | 
     */ 
 | 
    public List<IvrLibaExtemplate> selectIvrLibaExtemplateList(IvrLibaExtemplate ivrLibaExtemplate); 
 | 
  
 | 
    /** 
 | 
     * 新增通过模板 
 | 
     *  
 | 
     * @param ivrLibaExtemplate 通过模板 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public IvrLibaExtemplate insertIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate); 
 | 
  
 | 
    /** 
 | 
     * 修改通过模板 
 | 
     *  
 | 
     * @param ivrLibaExtemplate 通过模板 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int updateIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate); 
 | 
  
 | 
    /** 
 | 
     * 批量删除通过模板 
 | 
     *  
 | 
     * @param IDs 需要删除的通过模板主键集合 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteIvrLibaExtemplateByIDs(Long[] IDs); 
 | 
  
 | 
    /** 
 | 
     * 删除通过模板信息 
 | 
     *  
 | 
     * @param ID 通过模板主键 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteIvrLibaExtemplateByID(Long ID); 
 | 
} 
 |