package com.walker.pay.allinpaycloud.pojo;
|
|
public class RequestBindPhone {
|
|
public String getBizUserId() {
|
return bizUserId;
|
}
|
|
public void setBizUserId(String bizUserId) {
|
this.bizUserId = bizUserId;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getVerificationCode() {
|
return verificationCode;
|
}
|
|
public void setVerificationCode(String verificationCode) {
|
this.verificationCode = verificationCode;
|
}
|
|
private String bizUserId;
|
private String phone;
|
private String verificationCode;
|
}
|