领悦temp

This commit is contained in:
Harryxzy 2024-09-01 13:00:54 +08:00
parent 9c055fe693
commit 746e1ce040
1 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
package com.engine.salary.enums.ly;
import com.engine.salary.enums.BaseEnum;
import java.util.Arrays;
/**
@ -8,7 +10,7 @@ import java.util.Arrays;
* @date 2024/8/27 13:46
* @description 领悦-凭证类型
*/
public enum LyPZTypeEnum {
public enum LyPZTypeEnum implements BaseEnum<Integer> {
XZJTPZ(0, "薪资计提凭证", 0),
XZFFPZ(3, "薪资发放凭证", 0),
SBJTPZ(1, "社保计提凭证", 0),
@ -28,7 +30,7 @@ public enum LyPZTypeEnum {
this.labelId = labelId;
}
public int getValue() {
public Integer getValue() {
return value;
}
@ -36,7 +38,7 @@ public enum LyPZTypeEnum {
return defaultLabel;
}
public int getLabelId() {
public Integer getLabelId() {
return labelId;
}