mirror of
https://gitee.com/dromara/MaxKey.git
synced 2026-05-15 04:52:09 +08:00
synchronizer feishu
This commit is contained in:
@@ -22,6 +22,8 @@ public class AccessToken {
|
||||
int errcode;
|
||||
String errmsg;
|
||||
String access_token;
|
||||
//feishu access_token
|
||||
String tenant_access_token;
|
||||
String expires_in;
|
||||
|
||||
public AccessToken() {
|
||||
@@ -52,6 +54,14 @@ public class AccessToken {
|
||||
this.access_token = access_token;
|
||||
}
|
||||
|
||||
public String getTenant_access_token() {
|
||||
return tenant_access_token;
|
||||
}
|
||||
|
||||
public void setTenant_access_token(String tenant_access_token) {
|
||||
this.tenant_access_token = tenant_access_token;
|
||||
}
|
||||
|
||||
public String getExpires_in() {
|
||||
return expires_in;
|
||||
}
|
||||
|
||||
@@ -20,7 +20,10 @@ package org.maxkey.synchronizer.entity;
|
||||
public class ResponseData {
|
||||
|
||||
protected long errcode;
|
||||
protected long code;
|
||||
|
||||
protected String errmsg;
|
||||
protected String msg;
|
||||
|
||||
public long getErrcode() {
|
||||
return errcode;
|
||||
@@ -34,6 +37,20 @@ public class ResponseData {
|
||||
public void setErrmsg(String errmsg) {
|
||||
this.errmsg = errmsg;
|
||||
}
|
||||
|
||||
|
||||
public long getCode() {
|
||||
return code;
|
||||
}
|
||||
public void setCode(long code) {
|
||||
this.code = code;
|
||||
}
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
public ResponseData() {
|
||||
super();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user