| | |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.dromara.common.mybatis.core.domain.BaseEntity; |
| | | import org.dromara.common.translation.annotation.Translation; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | |
| | | * 计划时间 |
| | | */ |
| | | @ExcelProperty(value = "计划时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date planTime; |
| | | private String planTimeStr; |
| | | |
| | |
| | | private String specialNote; |
| | | |
| | | /** |
| | | * 运行时间 |
| | | */ |
| | | @ExcelProperty(value = "运行时间") |
| | | private Integer runTimes; |
| | | |
| | | /** |
| | | * 故障时间 |
| | | */ |
| | | @ExcelProperty(value = "故障时间") |
| | | private Integer faultTimes; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @ExcelProperty(value = "备注") |
| | |
| | | */ |
| | | private Integer abNormalNum; |
| | | |
| | | private String stId; |
| | | |
| | | |
| | | |
| | | |