liusheng
2025-04-25 07b526e08ae75441bb7927fc9e2dd7087533d51a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.smartor.service;
 
import java.util.List;
import com.smartor.domain.IvrLibIntentcategory;
 
/**
 * AI意图库分类Service接口
 * 
 * @author smartor
 * @date 2023-03-06
 */
public interface IIvrLibIntentcategoryService 
{
    /**
     * 查询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 intertcatids 需要删除的AI意图库分类主键集合
     * @return 结果
     */
    public int deleteIvrLibIntentcategoryByIntertcatids(Long[] intertcatids);
 
    /**
     * 删除AI意图库分类信息
     * 
     * @param intertcatid AI意图库分类主键
     * @return 结果
     */
    public int deleteIvrLibIntentcategoryByIntertcatid(Long intertcatid);
}