lefengyang
2026-08-09 0099d574d6509b03edd885313603cc18e8bb310e
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.ruoyi.system.service;
 
import java.util.List;
import com.ruoyi.system.domain.SysContact;
 
/**
 * 联系人Service接口
 * 
 * @author ruoyi
 * @date 2024-06-17
 */
public interface ISysContactService 
{
    /**
     * 查询联系人
     * 
     * @param id 联系人主键
     * @return 联系人
     */
    public SysContact selectSysContactById(Long id);
 
    /**
     * 查询联系人列表
     * 
     * @param sysContact 联系人
     * @return 联系人集合
     */
    public List<SysContact> selectSysContactList(SysContact sysContact);
 
    /**
     * 新增联系人
     * 
     * @param sysContact 联系人
     * @return 结果
     */
    public int insertSysContact(SysContact sysContact);
 
    /**
     * 修改联系人
     * 
     * @param sysContact 联系人
     * @return 结果
     */
    public int updateSysContact(SysContact sysContact);
 
    /**
     * 批量删除联系人
     * 
     * @param ids 需要删除的联系人主键集合
     * @return 结果
     */
    public int deleteSysContactByIds(Long[] ids);
 
    /**
     * 删除联系人信息
     * 
     * @param id 联系人主键
     * @return 结果
     */
    public int deleteSysContactById(Long id);
}