KuaishouAccessToken.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.ruixuan.isc.entity;
  2. import com.ruixuan.common.core.domain.BaseEntity;
  3. public class KuaishouAccessToken extends BaseEntity {
  4. private static final long serialVersionUID = 1L;
  5. private String id;
  6. private String accessToken;
  7. private String refreshToken;
  8. private String appKey;
  9. private String appSecret;
  10. private String signSecret;
  11. public static long getSerialVersionUID() {
  12. return serialVersionUID;
  13. }
  14. public String getId() {
  15. return id;
  16. }
  17. public void setId(String id) {
  18. this.id = id;
  19. }
  20. public String getAccessToken() {
  21. return accessToken;
  22. }
  23. public void setAccessToken(String accessToken) {
  24. this.accessToken = accessToken;
  25. }
  26. public String getRefreshToken() {
  27. return refreshToken;
  28. }
  29. public void setRefreshToken(String refreshToken) {
  30. this.refreshToken = refreshToken;
  31. }
  32. public String getAppKey() {
  33. return appKey;
  34. }
  35. public void setAppKey(String appKey) {
  36. this.appKey = appKey;
  37. }
  38. public String getSignSecret() {
  39. return signSecret;
  40. }
  41. public void setSignSecret(String signSecret) {
  42. this.signSecret = signSecret;
  43. }
  44. public String getAppSecret() {
  45. return appSecret;
  46. }
  47. public void setAppSecret(String appSecret) {
  48. this.appSecret = appSecret;
  49. }
  50. @Override
  51. public String toString() {
  52. return "KuaishouAccessToken{" +
  53. "id='" + id + '\'' +
  54. ", accessToken='" + accessToken + '\'' +
  55. ", refreshToken='" + refreshToken + '\'' +
  56. ", appKey='" + appKey + '\'' +
  57. ", appSecret='" + appSecret + '\'' +
  58. '}';
  59. }
  60. }