package cn.com.basic.face.model;
|
|
import java.util.List;
|
|
/**
|
* Created by Sinoe on 2017/2/28.
|
*/
|
|
public class Countrys {
|
|
/**
|
* name : A
|
* countrys : [{"country":"阿富汗"},{"country":"澳大利亚"}]
|
*/
|
|
private String name;
|
private List<CountrysBean> countrys;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public List<CountrysBean> getCountrys() {
|
return countrys;
|
}
|
|
public void setCountrys(List<CountrysBean> countrys) {
|
this.countrys = countrys;
|
}
|
|
public static class CountrysBean {
|
/**
|
* country : 阿富汗
|
*/
|
|
private String country;
|
|
public String getCountry() {
|
return country;
|
}
|
|
public void setCountry(String country) {
|
this.country = country;
|
}
|
}
|
}
|