|
|
@@ -40,6 +40,7 @@ public class CoreMonitoringRetrievalTaskExcelVo {
|
|
|
@ExcelIgnore
|
|
|
@ApiModelProperty(value = "调阅周期")
|
|
|
private String cycle;
|
|
|
+ @ExcelIgnore
|
|
|
@ExcelProperty("调阅周期")
|
|
|
private String cycleText;
|
|
|
/**
|
|
|
@@ -60,9 +61,9 @@ public class CoreMonitoringRetrievalTaskExcelVo {
|
|
|
* 状态
|
|
|
*/
|
|
|
@ExcelIgnore
|
|
|
- @ApiModelProperty(value = "状态")
|
|
|
+ @ApiModelProperty(value = "任务进度")
|
|
|
private String status;
|
|
|
- @ExcelProperty("状态")
|
|
|
+ @ExcelProperty("任务进度")
|
|
|
private String statusText;
|
|
|
|
|
|
/**
|
|
|
@@ -73,6 +74,7 @@ public class CoreMonitoringRetrievalTaskExcelVo {
|
|
|
/**
|
|
|
* 调阅角色
|
|
|
*/
|
|
|
+ @ExcelIgnore
|
|
|
@ExcelProperty("调阅角色")
|
|
|
private String roleName;
|
|
|
|
|
|
@@ -80,6 +82,7 @@ public class CoreMonitoringRetrievalTaskExcelVo {
|
|
|
/**
|
|
|
* 调阅开始时间
|
|
|
*/
|
|
|
+ @ExcelIgnore
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
@ExcelProperty("调阅开始时间")
|
|
|
private Date startTime;
|
|
|
@@ -87,6 +90,7 @@ public class CoreMonitoringRetrievalTaskExcelVo {
|
|
|
/**
|
|
|
* 调阅结束时间
|
|
|
*/
|
|
|
+ @ExcelIgnore
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
@ExcelProperty("调阅结束时间")
|
|
|
private Date endTime;
|