liusheng
2025-04-18 55ede3cff5dbbbcb8675d1592a67f20d598d49e7
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.IvrLibIntent;
 
/**
 * AI意图库Service接口
 * 
 * @author smartor
 * @date 2023-03-06
 */
public interface IIvrLibIntentService 
{
    /**
     * 查询AI意图库
     * 
     * @param intentid AI意图库主键
     * @return AI意图库
     */
    public IvrLibIntent selectIvrLibIntentByIntentid(Long intentid);
 
    /**
     * 查询AI意图库列表
     * 
     * @param ivrLibIntent AI意图库
     * @return AI意图库集合
     */
    public List<IvrLibIntent> selectIvrLibIntentList(IvrLibIntent ivrLibIntent);
 
    /**
     * 新增AI意图库
     * 
     * @param ivrLibIntent AI意图库
     * @return 结果
     */
    public int insertIvrLibIntent(IvrLibIntent ivrLibIntent);
 
    /**
     * 修改AI意图库
     * 
     * @param ivrLibIntent AI意图库
     * @return 结果
     */
    public int updateIvrLibIntent(IvrLibIntent ivrLibIntent);
 
    /**
     * 批量删除AI意图库
     * 
     * @param intentids 需要删除的AI意图库主键集合
     * @return 结果
     */
    public int deleteIvrLibIntentByIntentids(Long[] intentids);
 
    /**
     * 删除AI意图库信息
     * 
     * @param intentid AI意图库主键
     * @return 结果
     */
    public int deleteIvrLibIntentByIntentid(Long intentid);
}