|
|
@@ -25,12 +25,18 @@ public class MemberJoinRequestBean extends RequestBean {
|
|
|
private String birthDate;
|
|
|
@SerializedName("devPrno")
|
|
|
private String deviceId;
|
|
|
+ @SerializedName("inFrnrDvcd")
|
|
|
+ private String nationality;
|
|
|
+ @SerializedName("corpDvsn")
|
|
|
+ private String mobileCompany;
|
|
|
|
|
|
- public MemberJoinRequestBean(String name, String phoneNumber, String birthDate, String deviceId) {
|
|
|
+ public MemberJoinRequestBean(String name, String phoneNumber, String birthDate, String deviceId, String nationality, String mobileCompany) {
|
|
|
this.name = name;
|
|
|
this.phoneNumber = phoneNumber;
|
|
|
this.birthDate = birthDate;
|
|
|
this.deviceId = deviceId;
|
|
|
+ this.nationality = nationality;
|
|
|
+ this.mobileCompany = mobileCompany;
|
|
|
}
|
|
|
|
|
|
public String getName() {
|