|
@@ -7,6 +7,7 @@ import lombok.Setter;
|
|
|
@Setter
|
|
|
@Getter
|
|
|
public class UploadReportResult {
|
|
|
+ private Integer fileId;
|
|
|
private String reportPath;
|
|
|
private int status;
|
|
|
private String msg;
|
|
@@ -14,7 +15,8 @@ public class UploadReportResult {
|
|
|
public UploadReportResult() {
|
|
|
}
|
|
|
|
|
|
- public UploadReportResult(String reportPath, int status, String msg) {
|
|
|
+ public UploadReportResult(Integer fileId, String reportPath, int status, String msg) {
|
|
|
+ this.fileId = fileId;
|
|
|
this.reportPath = reportPath;
|
|
|
this.status = status;
|
|
|
this.msg = msg;
|