monaco 관련 수정
This commit is contained in:
@@ -54,9 +54,15 @@ public class ApiInfo implements Serializable {
|
||||
@Positive
|
||||
private Integer sleepSeconds;
|
||||
|
||||
@Column(length = 50)
|
||||
private String syntaxResponseBody1;
|
||||
|
||||
@Column(length = 5000)
|
||||
private String responseBody1;
|
||||
|
||||
@Column(length = 50)
|
||||
private String syntaxResponseBody2;
|
||||
|
||||
@Column(length = 5000)
|
||||
private String responseBody2;
|
||||
|
||||
@@ -156,12 +162,39 @@ public class ApiInfo implements Serializable {
|
||||
this.responseBody2 = responseBody2;
|
||||
}
|
||||
|
||||
public String getSyntaxResponseBody1() {
|
||||
return syntaxResponseBody1;
|
||||
}
|
||||
|
||||
public void setSyntaxResponseBody1(String syntaxResponseBody1) {
|
||||
this.syntaxResponseBody1 = syntaxResponseBody1;
|
||||
}
|
||||
|
||||
public String getSyntaxResponseBody2() {
|
||||
return syntaxResponseBody2;
|
||||
}
|
||||
|
||||
public void setSyntaxResponseBody2(String syntaxResponseBody2) {
|
||||
this.syntaxResponseBody2 = syntaxResponseBody2;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ApiInfo [id=" + id + ", apiGroupName=" + apiGroupName + ", apiName=" + apiName + ", url=" + url
|
||||
+ ", serviceValue=" + serviceValue + ", method=" + method + ", responseContentType="
|
||||
+ responseContentType + ", responseHeaders=" + responseHeaders + ", responseStatusCode="
|
||||
+ responseStatusCode + ", sleepSeconds=" + sleepSeconds + ", responseBody1=" + responseBody1
|
||||
+ ", responseBody2=" + responseBody2 + "]";
|
||||
return "ApiInfo{" +
|
||||
"id=" + id +
|
||||
", apiGroupName='" + apiGroupName + '\'' +
|
||||
", apiName='" + apiName + '\'' +
|
||||
", url='" + url + '\'' +
|
||||
", serviceValue='" + serviceValue + '\'' +
|
||||
", method='" + method + '\'' +
|
||||
", responseContentType='" + responseContentType + '\'' +
|
||||
", responseHeaders='" + responseHeaders + '\'' +
|
||||
", responseStatusCode=" + responseStatusCode +
|
||||
", sleepSeconds=" + sleepSeconds +
|
||||
", syntaxResponseBody1='" + syntaxResponseBody1 + '\'' +
|
||||
", responseBody1='" + responseBody1 + '\'' +
|
||||
", syntaxResponseBody2='" + syntaxResponseBody2 + '\'' +
|
||||
", responseBody2='" + responseBody2 + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user