|
@@ -0,0 +1,66 @@
|
|
|
+package cn.com.qmth.examcloud.api.commons.security.bean;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 接入的app
|
|
|
+ *
|
|
|
+ * @author WANGWEI
|
|
|
+ * @date 2019年1月28日
|
|
|
+ * @Copyright (c) 2018-2020 WANGWEI [QQ:522080330] All Rights Reserved.
|
|
|
+ */
|
|
|
+public class AccessApp implements JsonSerializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 9193428318438074444L;
|
|
|
+
|
|
|
+ private Long appId;
|
|
|
+
|
|
|
+ private String appName;
|
|
|
+
|
|
|
+ private String appCode;
|
|
|
+
|
|
|
+ private String secretKey;
|
|
|
+
|
|
|
+ private Long timeRange;
|
|
|
+
|
|
|
+ public Long getAppId() {
|
|
|
+ return appId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAppId(Long appId) {
|
|
|
+ this.appId = appId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAppName() {
|
|
|
+ return appName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAppName(String appName) {
|
|
|
+ this.appName = appName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAppCode() {
|
|
|
+ return appCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAppCode(String appCode) {
|
|
|
+ this.appCode = appCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSecretKey() {
|
|
|
+ return secretKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSecretKey(String secretKey) {
|
|
|
+ this.secretKey = secretKey;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getTimeRange() {
|
|
|
+ return timeRange;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTimeRange(Long timeRange) {
|
|
|
+ this.timeRange = timeRange;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|