驾驶证新增字段
This commit is contained in:
parent
8bbae1cf92
commit
7c63bb1d39
@ -27,6 +27,24 @@ public class LicenseInputBean {
|
||||
private String idcard;
|
||||
private String organizationName;
|
||||
private String startTime;
|
||||
private String birthday;
|
||||
private String country;
|
||||
|
||||
public String getBirthday() {
|
||||
return birthday;
|
||||
}
|
||||
|
||||
public void setBirthday(String birthday) {
|
||||
this.birthday = birthday;
|
||||
}
|
||||
|
||||
public String getCountry() {
|
||||
return country;
|
||||
}
|
||||
|
||||
public void setCountry(String country) {
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
public String getStartTime() {
|
||||
return startTime;
|
||||
|
@ -1159,6 +1159,10 @@ public class CertificatesActivity extends BaseAppCompatActivity {
|
||||
iib.setOrganizationName(odl.getData().getIssuingAuthority());
|
||||
iib.setAddress(odl.getData().getAddress());
|
||||
iib.setStartTime(odl.getData().getBeginDate());
|
||||
|
||||
iib.setSex(odl.getData().getSex());
|
||||
iib.setBirthday(odl.getData().getBirthday());
|
||||
iib.setCountry(odl.getData().getNationality());
|
||||
new AuthRequest().driverAuthLicense(con, hd, iib);
|
||||
} else {
|
||||
Toast.makeText(con, "请先上传资料", Toast.LENGTH_SHORT).show();
|
||||
|
Loading…
Reference in New Issue
Block a user