Ver código fonte

1.新增来源类型枚举

lisheng 3 dias atrás
pai
commit
77e4accb0f

+ 36 - 0
code/jyyy/nckd-jimin-jyyy-fi/src/main/java/nckd/jimin/jyyy/fi/common/ReimAmountSourceTypeEnum.java

@@ -0,0 +1,36 @@
+package nckd.jimin.jyyy.fi.common;
+
+public enum ReimAmountSourceTypeEnum {
+    YEARCOPY("yearcopy", "年度复制"),
+    COMPANYCHANGE("companychange", "公司变动"),
+    POSITIONCHANGE("positionchange", "岗位变动"),
+    JOBLEVELCHANGE("joblevelchange", "职级变动"),
+    ER_REIMCTL_NEW("er_reimctl_new", "手工新增"),
+    SYSTEMIMPORT("systemimport", "系统导入");
+    private String key ;
+
+    private String value ;
+
+    ReimAmountSourceTypeEnum(String key, String value) {
+        this.key = key;
+        this.value = value;
+    }
+
+    public String getKey() {
+        return key;
+    }
+
+    public void setKey(String key) {
+        this.key = key;
+    }
+
+    public String getValue() {
+        return value;
+    }
+
+    public void setValue(String value) {
+        this.value = value;
+    }
+
+
+}