You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
489 B
Java

1 year ago
package com.engine.attendance.enums;
import com.finance.toolkit.BaseEnum;
public enum CheckBoxEnum implements BaseEnum {
UNCHECKED("0","未选中"),
CHECKED("1","选中");
private String key;
private String value;
CheckBoxEnum(String key, String value){
this.key=key;
this.value=value;
}
@Override
public String getKey() {
return this.key;
}
@Override
public String getValue() {
return this.value;
}
}