dev.zhengxiang.component.common.Option 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.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() {
}
}