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 countrys; public String getName() { return name; } public void setName(String name) { this.name = name; } public List getCountrys() { return countrys; } public void setCountrys(List 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; } } }