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

dev.zhengxiang.component.common.Option Maven / Gradle / Ivy

The newest version!
package dev.zhengxiang.component.common;

/**
 * 选项
 */
public class Option {
    /**
     * 选项的标签
     * 用于展示层
     * 若不设置则默认与value相同
     */
    private String label;

    /**
     * 选项的值
     * 用于数据传输层
     */
    private String value;

    public String getLabel() {
        return label == null ? value : label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public Option(String label, String value) {
        this.label = label;
        this.value = value;
    }

    public Option() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy