44 lines
959 B
Java
44 lines
959 B
Java
package com.engine.salary.enums.salaryarchive;
|
|
|
|
import com.engine.salary.enums.BaseEnum;
|
|
import com.engine.salary.util.SalaryI18nUtil;
|
|
|
|
/**
|
|
* 薪资档案-状态
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
* <p>Company: 泛微软件</p>
|
|
*
|
|
* @author qiantao
|
|
* @version 1.0
|
|
**/
|
|
public enum ArchiveStatusEnum implements BaseEnum {
|
|
|
|
EFFICIENT("EFFICIENT", SalaryI18nUtil.getI18nLabel(2246, "有效"), 2246),
|
|
ARCHIVE("ARCHIVE", SalaryI18nUtil.getI18nLabel(501335, "封存"), 501335);
|
|
|
|
private String value;
|
|
|
|
private String defaultLabel;
|
|
|
|
private int labelId;
|
|
|
|
ArchiveStatusEnum(String value, String defaultLabel, int labelId) {
|
|
this.value = value;
|
|
this.defaultLabel = defaultLabel;
|
|
this.labelId = labelId;
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
public String getDefaultLabel() {
|
|
return defaultLabel;
|
|
}
|
|
|
|
public Integer getLabelId() {
|
|
return labelId;
|
|
}
|
|
|
|
}
|