|
@@ -19,9 +19,9 @@ public class PutFileReq extends BaseRequest {
|
|
|
|
|
|
private Long userId;
|
|
|
|
|
|
- private String filePath;
|
|
|
+ private String fileSuffix;
|
|
|
|
|
|
- private String fileName;
|
|
|
+ private String filePath;
|
|
|
|
|
|
public String getSiteId() {
|
|
|
return siteId;
|
|
@@ -47,20 +47,20 @@ public class PutFileReq extends BaseRequest {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
|
|
|
- public String getFilePath() {
|
|
|
- return filePath;
|
|
|
+ public String getFileSuffix() {
|
|
|
+ return fileSuffix;
|
|
|
}
|
|
|
|
|
|
- public void setFilePath(String filePath) {
|
|
|
- this.filePath = filePath;
|
|
|
+ public void setFileSuffix(String fileSuffix) {
|
|
|
+ this.fileSuffix = fileSuffix;
|
|
|
}
|
|
|
|
|
|
- public String getFileName() {
|
|
|
- return fileName;
|
|
|
+ public String getFilePath() {
|
|
|
+ return filePath;
|
|
|
}
|
|
|
|
|
|
- public void setFileName(String fileName) {
|
|
|
- this.fileName = fileName;
|
|
|
+ public void setFilePath(String filePath) {
|
|
|
+ this.filePath = filePath;
|
|
|
}
|
|
|
|
|
|
}
|