Blame view

src/main/java/com/sincere/student/dto/Province.java 616 Bytes
4dbd6f38   陈杰   bug 修复
1
2
3
4
5
6
package com.sincere.student.dto;

import java.util.List;

public class Province {

123dbb81   徐泉   研学代码提交
7
8
9
    private String value;
    private String label;
    private List<Province> children;
4dbd6f38   陈杰   bug 修复
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

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public List<Province> getChildren() {
        return children;
    }

    public void setChildren(List<Province> children) {
        this.children = children;
    }
}