| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.ruixuan.isc.entity;
- import com.ruixuan.common.core.domain.BaseEntity;
- public class KuaishouAccessToken extends BaseEntity {
- private static final long serialVersionUID = 1L;
- private String id;
- private String accessToken;
- private String refreshToken;
- private String appKey;
- private String appSecret;
- private String signSecret;
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getAccessToken() {
- return accessToken;
- }
- public void setAccessToken(String accessToken) {
- this.accessToken = accessToken;
- }
- public String getRefreshToken() {
- return refreshToken;
- }
- public void setRefreshToken(String refreshToken) {
- this.refreshToken = refreshToken;
- }
- public String getAppKey() {
- return appKey;
- }
- public void setAppKey(String appKey) {
- this.appKey = appKey;
- }
- public String getSignSecret() {
- return signSecret;
- }
- public void setSignSecret(String signSecret) {
- this.signSecret = signSecret;
- }
- public String getAppSecret() {
- return appSecret;
- }
- public void setAppSecret(String appSecret) {
- this.appSecret = appSecret;
- }
- @Override
- public String toString() {
- return "KuaishouAccessToken{" +
- "id='" + id + '\'' +
- ", accessToken='" + accessToken + '\'' +
- ", refreshToken='" + refreshToken + '\'' +
- ", appKey='" + appKey + '\'' +
- ", appSecret='" + appSecret + '\'' +
- '}';
- }
- }
|