package cn.com.basic.face.model; import java.util.List; /** * Created by Sinoe on 2017/2/28. */ public class CountrysModel { private String name; private List countryModelList; public CountrysModel() { super(); } public CountrysModel(String name, List countryModelList) { super(); this.name = name; this.countryModelList = countryModelList; } public String getName() { return name; } public void setName(String name) { this.name = name; } public List getCountryModelList() { return countryModelList; } public void setCountryModelList(List countryModelList) { this.countryModelList = countryModelList; } @Override public String toString() { return "CountrysModel{" + "name='" + name + '\'' + ", countryModelList=" + countryModelList + '}'; } }