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;
|
}
|