| | |
| | | import jakarta.validation.constraints.*; |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * 点检汇总业务对象 eims_inspect_st |
| | |
| | | /** |
| | | * 计划时间 |
| | | */ |
| | | @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; |
| | | private String stId; |
| | | |
| | | |
| | | |
| | | //前端界面查看模式 day-日视图 month-月视图 |
| | | private String viewMode; |