| | |
| | | |
| | | import com.ycl.platform.base.AbsVo; |
| | | import com.ycl.platform.domain.entity.Report; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.time.LocalDateTime; |
| | | import org.springframework.lang.NonNull; |
| | |
| | | private Integer pointId; |
| | | private String pointName; |
| | | |
| | | /** 报备类型 */ |
| | | private String reportType; |
| | | |
| | | /** 审核时间 */ |
| | | private LocalDateTime auditingTime; |
| | | |
| | |
| | | /** 故障类型 */ |
| | | private String errorType; |
| | | |
| | | /** |
| | | * 生效时间 |
| | | */ |
| | | private Date beginCreateTime; |
| | | |
| | | /** |
| | | * 失效时间 |
| | | */ |
| | | private Date endCreateTime; |
| | | |
| | | public static ReportVO getVoByEntity(@NonNull Report entity, ReportVO vo) { |
| | | if(vo == null) { |
| | | vo = new ReportVO(); |