@@ -1215,4 +1215,33 @@ public class Constant {
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) {