shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
package com.walker.pay.allinpaycloud.pojo;
 
public class RequestMember {
 
    public String getBizUserId() {
        return bizUserId;
    }
 
    public void setBizUserId(String bizUserId) {
        this.bizUserId = bizUserId;
    }
 
    public long getMemberType() {
        return memberType;
    }
 
    /**
     * 会员类型, 3 个人会员,2 企业会员
     * @param memberType
     */
    public void setMemberType(long memberType) {
        this.memberType = memberType;
    }
 
    public long getSource() {
        return source;
    }
 
    /**
     * 终端类型, 1 mobile, 2 pc
     * @param source
     */
    public void setSource(long source) {
        this.source = source;
    }
 
    private String bizUserId;
    private long memberType = MEMBER_TYPE_PERSON;
    private long source = 1;
 
    public static final long MEMBER_TYPE_PERSON = 3;
    public static final long MEMBER_TYPE_ENTERPRISE = 2;
}