|
@@ -15,6 +15,8 @@ public class PutFileResp extends BaseResponse {
|
|
|
|
|
|
private String url;
|
|
|
|
|
|
+ private String relativePath;
|
|
|
+
|
|
|
public String getUrl() {
|
|
|
return url;
|
|
|
}
|
|
@@ -23,4 +25,12 @@ public class PutFileResp extends BaseResponse {
|
|
|
this.url = url;
|
|
|
}
|
|
|
|
|
|
+ public String getRelativePath() {
|
|
|
+ return relativePath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelativePath(String relativePath) {
|
|
|
+ this.relativePath = relativePath;
|
|
|
+ }
|
|
|
+
|
|
|
}
|