zhoux 2 лет назад
Родитель
Сommit
42728c95e9
1 измененных файлов с 24 добавлено и 0 удалено
  1. 24 0
      src/main/java/com/dk/common/infrastructure/constant/Constant.java

+ 24 - 0
src/main/java/com/dk/common/infrastructure/constant/Constant.java

@@ -1715,6 +1715,30 @@ public class Constant {
     }
 
     /**
+     * @author : 周兴
+     * @desc :体验公司(2:标准版体验;3:专业版体验)
+     * @date : 2024-03-15 13:42
+     */
+    public enum Experience {
+        Standard(2),
+        profession(3);
+
+        private Integer name;
+
+        public Integer getName() {
+            return name;
+        }
+
+        public void setName(Integer name) {
+            this.name = name;
+        }
+
+        Experience(Integer name) {
+            this.name = name;
+        }
+    }
+
+    /**
      * @author : 付斌
      * @desc :账务对象类型
      * @date : 2024-03-15 13:42