zhoux 2 سال پیش
والد
کامیت
4dc407c97e
1فایلهای تغییر یافته به همراه29 افزوده شده و 0 حذف شده
  1. 29 0
      src/main/java/com/dk/common/infrastructure/constant/Constant.java

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

@@ -1215,4 +1215,33 @@ public class Constant {
             this.name = name;
             this.name = name;
         }
         }
     }
     }
+
+    /**
+     * @desc   : appCode
+     * @author : 周兴
+     * @date   : 2024-03-01 15:45
+     */
+    public enum AppCode {
+
+        WEB("CP-WEB"),
+        OPERATE("DK-WEB"),
+        WEIXIN("CP-WXP");
+
+
+        private String code;
+
+        // get set 方法
+        public String getCode() {
+            return code;
+        }
+
+        public void setCode(String code) {
+            this.code = code;
+        }
+
+        // 构造方法
+        AppCode(String code) {
+            this.code = code;
+        }
+    }
 }
 }