|
|
|
|
@ -1,11 +1,11 @@
|
|
|
|
|
package org.dromara.dms.domain.vo;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.dromara.common.excel.annotation.ExcelDictFormat;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设备故障处理记录表(详细追溯)结果
|
|
|
|
|
@ -13,12 +13,13 @@ import java.util.Date;
|
|
|
|
|
@Data
|
|
|
|
|
public class FaultTraceReportVo {
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "统计周期")
|
|
|
|
|
@ExcelProperty(value = "统计周期")
|
|
|
|
|
private String periodLabel;
|
|
|
|
|
|
|
|
|
|
private Date periodStart;
|
|
|
|
|
@ExcelIgnore
|
|
|
|
|
private String periodStart;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "设备类型")
|
|
|
|
|
@ExcelProperty(value = "设备类型")
|
|
|
|
|
private String deviceType;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "设备编号")
|
|
|
|
|
@ -28,7 +29,6 @@ public class FaultTraceReportVo {
|
|
|
|
|
@ExcelDictFormat(dictType = "activity_fault_type")
|
|
|
|
|
private String faultType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "故障次数")
|
|
|
|
|
private Long faultCount;
|
|
|
|
|
|
|
|
|
|
@ -54,6 +54,5 @@ public class FaultTraceReportVo {
|
|
|
|
|
private String topResolution;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "措施实施时间")
|
|
|
|
|
private Date topResolutionTime;
|
|
|
|
|
|
|
|
|
|
private String topResolutionTime;
|
|
|
|
|
}
|
|
|
|
|
|