| | |
| | | import lombok.EqualsAndHashCode; |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serial; |
| | | |
| | |
| | | * 汇总类型 Day-日汇总 Month-月汇总 |
| | | */ |
| | | private String type; |
| | | private String stId; |
| | | |
| | | /** |
| | | * 标题 |
| | |
| | | /** |
| | | * 计划时间 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date planTime; |
| | | |
| | | /** |
| | |
| | | private String specialNote; |
| | | |
| | | /** |
| | | * 运行时间 |
| | | */ |
| | | private Integer runTimes; |
| | | |
| | | /** |
| | | * 故障时间 |
| | | */ |
| | | private Integer faultTimes; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |