ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.permission.service;
 
import jnpf.base.service.SuperService;
import jnpf.permission.entity.SocialsUserEntity;
 
import java.util.List;
 
/**
 * 流程设计
 *
 * @author JNPF开发平台组
 * @version V3.4.2
 * @copyright 引迈信息技术有限公司
 * @date 2022/7/14 9:33:16
 */
public interface SocialsUserService extends SuperService<SocialsUserEntity> {
    /**
     * 查询用户授权列表
     * @param
     * @return
     * @copyright 引迈信息技术有限公司
     * @date 2022/7/14
     */
    List<SocialsUserEntity> getListByUserId(String userId);
 
    /**
     * 查询用户授权列表
     * @param
     * @return
     * @copyright 引迈信息技术有限公司
     * @date 2022/7/14
     */
    List<SocialsUserEntity> getUserIfnoBySocialIdAndType(String socialId,String socialType);
 
    /**
     * 查询用户授权列表
     * @param
     * @return
     * @copyright 引迈信息技术有限公司
     * @date 2022/7/14
     */
    List<SocialsUserEntity> getListByUserIdAndSource(String userId,String socialType);
 
    /**
     *  根据第三方账号账号类型和id获取用户第三方绑定信息
     * @param socialId 第三方账号id
     * @return
     */
    SocialsUserEntity getInfoBySocialId(String socialId,String socialType);
}