| | |
| | | package com.ycl.platform.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.platform.base.AbsVo; |
| | | import com.ycl.platform.domain.entity.WorkOrder; |
| | | |
| | |
| | | |
| | | /** 运维单位 */ |
| | | private Integer unitId; |
| | | private String unitName; |
| | | |
| | | /** 工单来源 */ |
| | | private String source; |
| | | |
| | | /** |
| | | * 点位 |
| | | */ |
| | | private Integer pointId; |
| | | |
| | | /** 故障类型 */ |
| | | private String errorType; |
| | | |
| | | /** 运维人员 */ |
| | | private Integer ywPeopleId; |
| | | private String ywPeopleName; |
| | | |
| | | /** 运维处理时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime ywHandleTime; |
| | | |
| | | /** 运维结果 */ |