From d44a6b6c85b916292a38131f49ec32360303a38f Mon Sep 17 00:00:00 2001 From: wangbing Date: Sun, 16 Jun 2019 00:23:25 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81Api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/Java_api/FileUploadResponse.ftl | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) 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; + } }