xuxiuxi
2017-03-29 9dbc3d9356d57fecb0f77782838161b53a9852f2
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
47
48
49
50
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;
        }
    }
}