ResourceApiInterface.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.lightinit.hsdataplatform.entity;
  2. import java.util.Date;
  3. public class ResourceApiInterface {
  4. private Long id;
  5. private Long apiId;
  6. private String interfaceName;
  7. private String interfaceIdentity;
  8. private Boolean isAuth;
  9. private String requestMethod;
  10. private String responseFormat;
  11. private Date createdAt;
  12. private Long createdBy;
  13. private Date deletedAt;
  14. private Long deletedBy;
  15. private String routeId;
  16. private String appId;
  17. public Long getId() {
  18. return id;
  19. }
  20. public void setId(Long id) {
  21. this.id = id;
  22. }
  23. public Long getApiId() {
  24. return apiId;
  25. }
  26. public void setApiId(Long apiId) {
  27. this.apiId = apiId;
  28. }
  29. public String getInterfaceName() {
  30. return interfaceName;
  31. }
  32. public void setInterfaceName(String interfaceName) {
  33. this.interfaceName = interfaceName == null ? null : interfaceName.trim();
  34. }
  35. public String getInterfaceIdentity() {
  36. return interfaceIdentity;
  37. }
  38. public void setInterfaceIdentity(String interfaceIdentity) {
  39. this.interfaceIdentity = interfaceIdentity == null ? null : interfaceIdentity.trim();
  40. }
  41. public Boolean getIsAuth() {
  42. return isAuth;
  43. }
  44. public void setIsAuth(Boolean isAuth) {
  45. this.isAuth = isAuth;
  46. }
  47. public String getRequestMethod() {
  48. return requestMethod;
  49. }
  50. public void setRequestMethod(String requestMethod) {
  51. this.requestMethod = requestMethod == null ? null : requestMethod.trim();
  52. }
  53. public String getResponseFormat() {
  54. return responseFormat;
  55. }
  56. public void setResponseFormat(String responseFormat) {
  57. this.responseFormat = responseFormat == null ? null : responseFormat.trim();
  58. }
  59. public Date getCreatedAt() {
  60. return createdAt;
  61. }
  62. public void setCreatedAt(Date createdAt) {
  63. this.createdAt = createdAt;
  64. }
  65. public Long getCreatedBy() {
  66. return createdBy;
  67. }
  68. public void setCreatedBy(Long createdBy) {
  69. this.createdBy = createdBy;
  70. }
  71. public Date getDeletedAt() {
  72. return deletedAt;
  73. }
  74. public void setDeletedAt(Date deletedAt) {
  75. this.deletedAt = deletedAt;
  76. }
  77. public Long getDeletedBy() {
  78. return deletedBy;
  79. }
  80. public void setDeletedBy(Long deletedBy) {
  81. this.deletedBy = deletedBy;
  82. }
  83. public String getRouteId() {
  84. return routeId;
  85. }
  86. public void setRouteId(String routeId) {
  87. this.routeId = routeId == null ? null : routeId.trim();
  88. }
  89. public String getAppId() {
  90. return appId;
  91. }
  92. public void setAppId(String appId) {
  93. this.appId = appId == null ? null : appId.trim();
  94. }
  95. }