|
|
|
@ -21,6 +21,7 @@ public class ClientPreApplyStep1Bean {
|
|
|
|
|
private String contact_email;
|
|
|
|
|
@NotEmpty(message = "phoneCodeKey can't be null")
|
|
|
|
|
private String phoneCodeKey;
|
|
|
|
|
private String apply_source = "pc";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public JSONObject insertObject() {
|
|
|
|
@ -75,4 +76,12 @@ public class ClientPreApplyStep1Bean {
|
|
|
|
|
public void setPhoneCodeKey(String phoneCodeKey) {
|
|
|
|
|
this.phoneCodeKey = phoneCodeKey;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getApply_source() {
|
|
|
|
|
return apply_source;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setApply_source(String apply_source) {
|
|
|
|
|
this.apply_source = apply_source;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|