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