package com.sincere.student.dto; import java.util.List; public class Province { private String value ; private String label ; private List children ; 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 getChildren() { return children; } public void setChildren(List children) { this.children = children; } }