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;
|
}
|
|
}
|