|
@@ -0,0 +1,75 @@
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: JWT实体类
|
|
|
+ * @author: gaodm
|
|
|
+ * @time: 2018/8/2 13:53
|
|
|
+ */
|
|
|
+public class JWT {
|
|
|
+ private String access_token;
|
|
|
+ private String token_type;
|
|
|
+ private String refresh_token;
|
|
|
+ private int expires_in;
|
|
|
+ private String scope;
|
|
|
+ private String jti;
|
|
|
+
|
|
|
+ public String getAccess_token() {
|
|
|
+ return access_token;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAccess_token(String access_token) {
|
|
|
+ this.access_token = access_token;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getToken_type() {
|
|
|
+ return token_type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setToken_type(String token_type) {
|
|
|
+ this.token_type = token_type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRefresh_token() {
|
|
|
+ return refresh_token;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRefresh_token(String refresh_token) {
|
|
|
+ this.refresh_token = refresh_token;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getExpires_in() {
|
|
|
+ return expires_in;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExpires_in(int expires_in) {
|
|
|
+ this.expires_in = expires_in;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getScope() {
|
|
|
+ return scope;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScope(String scope) {
|
|
|
+ this.scope = scope;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getJti() {
|
|
|
+ return jti;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJti(String jti) {
|
|
|
+ this.jti = jti;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "JWT{" +
|
|
|
+ "access_token='" + access_token + '\'' +
|
|
|
+ ", token_type='" + token_type + '\'' +
|
|
|
+ ", refresh_token='" + refresh_token + '\'' +
|
|
|
+ ", expires_in=" + expires_in +
|
|
|
+ ", scope='" + scope + '\'' +
|
|
|
+ ", jti='" + jti + '\'' +
|
|
|
+ '}';
|
|
|
+ }
|
|
|
+}
|