mac
2024-05-11 d0dc2a8ce665ddcc5436270550602a1b672d248f
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
package com.hdl.photovoltaic.ui.bean;
 
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
/**
 * Created by Zoro
 * Created on 2021/12/16
 * description:
 */
public class ProvinceBean implements Serializable {
    private String label;
    private String value;
    private List<CityBean> children = new ArrayList<>();
 
    public String getLabel() {
        return label == null ? "" : label;
    }
 
    public void setLabel(String label) {
        this.label = label;
    }
 
    public String getValue() {
        return value == null ? "" : value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public List<CityBean> getChildren() {
        if (children == null) {
            return new ArrayList<>();
        }
        return children;
    }
 
    public void setChildren(List<CityBean> children) {
        this.children = children;
    }
 
}