diff --git a/src/main/resources/modules/Java_api/FileUploadResponse.ftl b/src/main/resources/modules/Java_api/FileUploadResponse.ftl index e835ee1c..540d988a 100644 --- a/src/main/resources/modules/Java_api/FileUploadResponse.ftl +++ b/src/main/resources/modules/Java_api/FileUploadResponse.ftl @@ -14,6 +14,17 @@ public class FileUploadResponse extends ApiResponse { */ private Long id; + /** + * url地址 + */ + private String url; + + private String attribute1; + + private String attribute2; + + private String attribute3; + public Long getId() { return id; } @@ -21,4 +32,36 @@ public class FileUploadResponse extends ApiResponse { public void setId(Long id) { this.id = id; } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getAttribute1() { + return attribute1; + } + + public void setAttribute1(String attribute1) { + this.attribute1 = attribute1; + } + + public String getAttribute2() { + return attribute2; + } + + public void setAttribute2(String attribute2) { + this.attribute2 = attribute2; + } + + public String getAttribute3() { + return attribute3; + } + + public void setAttribute3(String attribute3) { + this.attribute3 = attribute3; + } }