| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package com.lightinit.hsdataplatform.entity;
- import java.util.Date;
- public class ResourceApiInterface {
- private Long id;
- private Long apiId;
- private String interfaceName;
- private String interfaceIdentity;
- private Boolean isAuth;
- private String requestMethod;
- private String responseFormat;
- private Date createdAt;
- private Long createdBy;
- private Date deletedAt;
- private Long deletedBy;
- private String routeId;
- private String appId;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getApiId() {
- return apiId;
- }
- public void setApiId(Long apiId) {
- this.apiId = apiId;
- }
- public String getInterfaceName() {
- return interfaceName;
- }
- public void setInterfaceName(String interfaceName) {
- this.interfaceName = interfaceName == null ? null : interfaceName.trim();
- }
- public String getInterfaceIdentity() {
- return interfaceIdentity;
- }
- public void setInterfaceIdentity(String interfaceIdentity) {
- this.interfaceIdentity = interfaceIdentity == null ? null : interfaceIdentity.trim();
- }
- public Boolean getIsAuth() {
- return isAuth;
- }
- public void setIsAuth(Boolean isAuth) {
- this.isAuth = isAuth;
- }
- public String getRequestMethod() {
- return requestMethod;
- }
- public void setRequestMethod(String requestMethod) {
- this.requestMethod = requestMethod == null ? null : requestMethod.trim();
- }
- public String getResponseFormat() {
- return responseFormat;
- }
- public void setResponseFormat(String responseFormat) {
- this.responseFormat = responseFormat == null ? null : responseFormat.trim();
- }
- public Date getCreatedAt() {
- return createdAt;
- }
- public void setCreatedAt(Date createdAt) {
- this.createdAt = createdAt;
- }
- public Long getCreatedBy() {
- return createdBy;
- }
- public void setCreatedBy(Long createdBy) {
- this.createdBy = createdBy;
- }
- public Date getDeletedAt() {
- return deletedAt;
- }
- public void setDeletedAt(Date deletedAt) {
- this.deletedAt = deletedAt;
- }
- public Long getDeletedBy() {
- return deletedBy;
- }
- public void setDeletedBy(Long deletedBy) {
- this.deletedBy = deletedBy;
- }
- public String getRouteId() {
- return routeId;
- }
- public void setRouteId(String routeId) {
- this.routeId = routeId == null ? null : routeId.trim();
- }
- public String getAppId() {
- return appId;
- }
- public void setAppId(String appId) {
- this.appId = appId == null ? null : appId.trim();
- }
- }
|