From 4614752f0bd78e6c2c6e39dcd87eeef338468077 Mon Sep 17 00:00:00 2001
From: 吴学文 <wuxuewen@wuxuewendeMacBook-Pro.local>
Date: 星期一, 18 十一月 2019 23:24:20 +0800
Subject: [PATCH] 加入登录功能
---
java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java b/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
index 53b7917..cd65404 100644
--- a/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
+++ b/java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
@@ -14,6 +14,10 @@
private String mappingPath;
+ private String wxAppId;
+
+ private String wxAppSecret;
+
public String getMappingPath() {
return mappingPath;
}
@@ -21,4 +25,20 @@
public void setMappingPath(String mappingPath) {
this.mappingPath = mappingPath;
}
+
+ public String getWxAppId() {
+ return wxAppId;
+ }
+
+ public void setWxAppId(String wxAppId) {
+ this.wxAppId = wxAppId;
+ }
+
+ public String getWxAppSecret() {
+ return wxAppSecret;
+ }
+
+ public void setWxAppSecret(String wxAppSecret) {
+ this.wxAppSecret = wxAppSecret;
+ }
}
--
Gitblit v1.8.0