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 NationBean implements Serializable { private String label; private String value; private List 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 getChildren() { if (children == null) { return new ArrayList<>(); } return children; } public void setChildren(List children) { this.children = children; } }