|
@@ -27,6 +27,12 @@ public class SysProperty {
|
|
|
@Value("${examcloud.server.password}")
|
|
|
public String serverPassword;
|
|
|
|
|
|
+ @Value("${examcloud.server.appId}")
|
|
|
+ public String serverAppId;
|
|
|
+
|
|
|
+ @Value("${examcloud.server.secretKey}")
|
|
|
+ public String serverSecretKey;
|
|
|
+
|
|
|
public String getDataDir() {
|
|
|
return dataDir;
|
|
|
}
|
|
@@ -67,4 +73,20 @@ public class SysProperty {
|
|
|
this.serverPassword = serverPassword;
|
|
|
}
|
|
|
|
|
|
+ public String getServerAppId() {
|
|
|
+ return serverAppId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setServerAppId(String serverAppId) {
|
|
|
+ this.serverAppId = serverAppId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getServerSecretKey() {
|
|
|
+ return serverSecretKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setServerSecretKey(String serverSecretKey) {
|
|
|
+ this.serverSecretKey = serverSecretKey;
|
|
|
+ }
|
|
|
+
|
|
|
}
|