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<CountryModel> countryModelList;
|
|
public CountrysModel() {
|
super();
|
}
|
|
public CountrysModel(String name, List<CountryModel> countryModelList) {
|
super();
|
this.name = name;
|
this.countryModelList = countryModelList;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public List<CountryModel> getCountryModelList() {
|
return countryModelList;
|
}
|
|
public void setCountryModelList(List<CountryModel> countryModelList) {
|
this.countryModelList = countryModelList;
|
}
|
|
@Override
|
public String toString() {
|
return "CountrysModel{" +
|
"name='" + name + '\'' +
|
", countryModelList=" + countryModelList +
|
'}';
|
}
|
}
|