|
|
@ -43,6 +43,10 @@ public class ProjectTimeOutInfoExportDTO { |
|
|
|
@ExcelProperty("上传文件进度(%)") |
|
|
|
private Double uploadFileRate; |
|
|
|
|
|
|
|
@ExcelProperty("修改次数") |
|
|
|
private int updateCount; |
|
|
|
|
|
|
|
|
|
|
|
public ProjectTimeOutInfoExportDTO(String projectName, |
|
|
|
String dutyWorkplace, |
|
|
|
String reformName, |
|
|
@ -52,7 +56,8 @@ public class ProjectTimeOutInfoExportDTO { |
|
|
|
int timeOutPayCount, |
|
|
|
String timeOutPaySituation, |
|
|
|
Double uploadFileRate, |
|
|
|
String projectTimeOutSituation |
|
|
|
String projectTimeOutSituation, |
|
|
|
int updateCount |
|
|
|
) { |
|
|
|
this.projectName = projectName; |
|
|
|
this.superiorFundPayRate = superiorFundPayRate; |
|
|
@ -64,6 +69,7 @@ public class ProjectTimeOutInfoExportDTO { |
|
|
|
this.timeOutPaySituation = timeOutPaySituation; |
|
|
|
this.uploadFileRate = uploadFileRate; |
|
|
|
this.projectTimeOutSituation = projectTimeOutSituation; |
|
|
|
this.updateCount = updateCount; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|