package com.smartor.mapper;
|
|
import java.util.List;
|
import com.smartor.domain.IvrLibIntentcategory;
|
|
/**
|
* AI意图库分类Mapper接口
|
*
|
* @author smartor
|
* @date 2023-03-06
|
*/
|
public interface IvrLibIntentcategoryMapper
|
{
|
/**
|
* 查询AI意图库分类
|
*
|
* @param intertcatid AI意图库分类主键
|
* @return AI意图库分类
|
*/
|
public IvrLibIntentcategory selectIvrLibIntentcategoryByIntertcatid(Long intertcatid);
|
|
/**
|
* 查询AI意图库分类列表
|
*
|
* @param ivrLibIntentcategory AI意图库分类
|
* @return AI意图库分类集合
|
*/
|
public List<IvrLibIntentcategory> selectIvrLibIntentcategoryList(IvrLibIntentcategory ivrLibIntentcategory);
|
|
/**
|
* 新增AI意图库分类
|
*
|
* @param ivrLibIntentcategory AI意图库分类
|
* @return 结果
|
*/
|
public int insertIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory);
|
|
/**
|
* 修改AI意图库分类
|
*
|
* @param ivrLibIntentcategory AI意图库分类
|
* @return 结果
|
*/
|
public int updateIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory);
|
|
/**
|
* 删除AI意图库分类
|
*
|
* @param intertcatid AI意图库分类主键
|
* @return 结果
|
*/
|
public int deleteIvrLibIntentcategoryByIntertcatid(Long intertcatid);
|
|
/**
|
* 批量删除AI意图库分类
|
*
|
* @param intertcatids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteIvrLibIntentcategoryByIntertcatids(Long[] intertcatids);
|
}
|