dev.zhengxiang.component.antd.AntdCascader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of frontend Show documentation
Show all versions of frontend Show documentation
Frontend component object
The newest version!
package dev.zhengxiang.component.antd;
import java.util.List;
/**
* antd 级联选择
* https://ant.design/components/cascader-cn/
*/
public class AntdCascader {
/**
* 值
*/
private String value;
/**
* 展示用
*/
private String label;
/**
* 子节点
*/
private List extends AntdCascader> children;
/* getter setter */
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 extends AntdCascader> getChildren() {
return children;
}
public void setChildren(List extends AntdCascader> children) {
this.children = children;
}
}