xuxiuxi
2017-03-29 96c779d22c0a1df0d3441ebb4fcd30f9311e1fe2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 +
                '}';
    }
}