스크립트 기능 추가

This commit is contained in:
yunjy
2022-08-19 10:37:36 +09:00
parent f5fb0e39ee
commit 83568bd9d5
15 changed files with 790 additions and 2 deletions
@@ -43,6 +43,9 @@ public class ApiInfo implements Serializable {
@Column(length = 10)
private String method;
@Column(length = 500)
private String scriptName;
@Column(length = 50)
private String responseContentType;
@@ -181,6 +184,14 @@ public class ApiInfo implements Serializable {
this.syntaxResponseBody2 = syntaxResponseBody2;
}
public String getScriptName() {
return scriptName;
}
public void setScriptName(String scriptName) {
this.scriptName = scriptName;
}
@Override
public String toString() {
return "ApiInfo{" + "id=" + id + ", apiGroupName='" + apiGroupName + '\'' + ", apiName='" + apiName + '\''