All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.zhengxiang.component.antd.AntdCascader Maven / Gradle / Ivy

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 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 getChildren() {
        return children;
    }

    public void setChildren(List children) {
        this.children = children;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy