车间能级提升-智能设备管理系统
baoshiwei
2025-03-21 fc5d43e590ac5453f1e1f96fcf84f558f383ca40
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
package org.dromara.system.service;
 
import org.dromara.system.domain.bo.SysSocialBo;
import org.dromara.system.domain.vo.SysSocialVo;
 
import java.util.List;
 
/**
 * 社会化关系Service接口
 *
 * @author thiszhc
 */
public interface ISysSocialService {
 
 
    /**
     * 查询社会化关系
     */
    SysSocialVo queryById(String id);
 
    /**
     * 查询社会化关系列表
     */
    List<SysSocialVo> queryList(SysSocialBo bo);
 
    /**
     * 查询社会化关系列表
     */
    List<SysSocialVo> queryListByUserId(Long userId);
 
    /**
     * 新增授权关系
     */
    Boolean insertByBo(SysSocialBo bo);
 
    /**
     * 更新社会化关系
     */
    Boolean updateByBo(SysSocialBo bo);
 
    /**
     * 删除社会化关系信息
     */
    Boolean deleteWithValidById(Long id);
 
 
    /**
     * 根据 authId 查询
     */
    List<SysSocialVo> selectByAuthId(String authId);
 
    SysSocialVo selectByUserId(Long userId);
 
}