shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
63
64
65
package com.ishop.model.request;
 
import java.io.Serializable;
 
/**
 * 三方用户注册对象,暂时微信小程序登录使用。
 * @date 2023-007-27
 */
public class RegisterThirdUserRequest implements Serializable {
 
    public Long getSpreadPid() {
        return spreadPid;
    }
 
    public void setSpreadPid(Long spreadPid) {
        this.spreadPid = spreadPid;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getOpenId() {
        return openId;
    }
 
    public void setOpenId(String openId) {
        this.openId = openId;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    //    @ApiModelProperty(value = "推广人id")
    private Long spreadPid;
 
//    @ApiModelProperty(value = "用户类型:wechat-公众号,routine-小程序,h5-H5,iosWx-苹果微信,androidWx-安卓微信")
//    @StringContains(limitValues = {"wechat","routine","h5","iosWx","androidWx"}, message = "未知的用户类型")
    private String type;
 
//    @ApiModelProperty(value = "用户openId")
    private String openId;
 
//    @ApiModelProperty(value = "前端临时授权code")
    private String code;
 
    @Override
    public String toString() {
        return "RegisterThirdUserRequest{" +
                "spreadPid=" + spreadPid +
                ", type='" + type + '\'' +
                ", openId='" + openId + '\'' +
                ", code='" + code + '\'' +
                '}';
    }
}