liusheng
2025-04-23 3000e6e57ee16b8a9c81f9ffb5d766ea10552171
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
62
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);
}