zxl
8 天以前 0fb6b9d8d414822668c401a2b507df1fe6d1fa2d
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
package cn.lili.modules.member.entity.dto;
 
import lombok.Builder;
import lombok.Data;
 
/**
 * ConnectQueryDTO
 *
 * @author Chopper
 * @version v1.0
 * 2021-12-01 14:34
 */
@Data
@Builder
public class ConnectQueryDTO {
 
    /**
     * 用户id
     */
    private String userId;
 
    /**
     * 第三方id
     */
    private String unionId;
 
    /**
     * 联合登陆类型
     */
    private String unionType;
 
}