123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package com.yihu.hos.models;
- /**
- *
- * @author HZY
- * @vsrsion 1.0
- * Created at 2016/8/16.
- */
- public class SystemServiceEndpoint implements java.io.Serializable {
- private String id;
- private String code;
- private String name;
- private String appId;
- private String version;
- private String description;
- private String endpoint;
- private String requestProtocol;
- private String requestParameterList;
- private String requesModule;
- private String requestMethod;
- private String responeResult;
- private String responeError;
- private Integer healthReportType;
- private String healthEndpoint;
- private Integer metricsReportType;
- private String metricsEndpoint;
- private Integer valid;
- private String requestFormat;
- public SystemServiceEndpoint() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getVersion() {
- return version;
- }
- public void setVersion(String version) {
- this.version = version;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public String getEndpoint() {
- return endpoint;
- }
- public void setEndpoint(String endpoint) {
- this.endpoint = endpoint;
- }
- public String getRequestProtocol() {
- return requestProtocol;
- }
- public void setRequestProtocol(String requestProtocol) {
- this.requestProtocol = requestProtocol;
- }
- public String getRequestParameterList() {
- return requestParameterList;
- }
- public void setRequestParameterList(String requestParameterList) {
- this.requestParameterList = requestParameterList;
- }
- public String getRequesModule() {
- return requesModule;
- }
- public void setRequesModule(String requesModule) {
- this.requesModule = requesModule;
- }
- public String getRequestMethod() {
- return requestMethod;
- }
- public void setRequestMethod(String requestMethod) {
- this.requestMethod = requestMethod;
- }
- public String getResponeResult() {
- return responeResult;
- }
- public void setResponeResult(String responeResult) {
- this.responeResult = responeResult;
- }
- public String getResponeError() {
- return responeError;
- }
- public void setResponeError(String responeError) {
- this.responeError = responeError;
- }
- public Integer getHealthReportType() {
- return healthReportType;
- }
- public void setHealthReportType(Integer healthReportType) {
- this.healthReportType = healthReportType;
- }
- public String getHealthEndpoint() {
- return healthEndpoint;
- }
- public void setHealthEndpoint(String healthEndpoint) {
- this.healthEndpoint = healthEndpoint;
- }
- public Integer getMetricsReportType() {
- return metricsReportType;
- }
- public void setMetricsReportType(Integer metricsReportType) {
- this.metricsReportType = metricsReportType;
- }
- public String getMetricsEndpoint() {
- return metricsEndpoint;
- }
- public void setMetricsEndpoint(String metricsEndpoint) {
- this.metricsEndpoint = metricsEndpoint;
- }
- public Integer getValid() {
- return valid;
- }
- public void setValid(Integer valid) {
- this.valid = valid;
- }
- public String getRequestFormat() {
- return requestFormat;
- }
- public void setRequestFormat(String requestFormat) {
- this.requestFormat = requestFormat;
- }
- public String getAppId() {
- return appId;
- }
- public void setAppId(String appId) {
- this.appId = appId;
- }
- }
|