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.
30 lines
530 B
Java
30 lines
530 B
Java
package com.engine.attendance.enums;
|
|
|
|
import com.finance.toolkit.BaseEnum;
|
|
|
|
public enum BalanceHandleEnum implements BaseEnum {
|
|
|
|
CANCEL("0","作废"),
|
|
DELAY("1","延期"),
|
|
SALARY_CALCULATION("2","计薪");
|
|
|
|
private String key;
|
|
private String value;
|
|
|
|
BalanceHandleEnum(String key, String value){
|
|
this.key=key;
|
|
this.value=value;
|
|
}
|
|
|
|
@Override
|
|
public String getKey() {
|
|
|
|
return this.key;
|
|
}
|
|
|
|
@Override
|
|
public String getValue() {
|
|
return this.value;
|
|
}
|
|
}
|