| | |
| | | package com.ycl.platform.domain.result.SYS; |
| | | |
| | | |
| | | import com.ycl.platform.domain.entity.WorkOrder; |
| | | import com.ycl.platform.domain.result.BaseResult; |
| | | import lombok.Data; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | /** |
| | | * 点位在线率 |
| | | */ |
| | | @Data |
| | | @Document(collection = "t_monitor_online") |
| | | public class TMonitorResult extends BaseResult { |
| | | /** 部门id */ |
| | | /*** 部门id*/ |
| | | private Integer deptId; |
| | | /** 在线 */ |
| | | /*** 部门id*/ |
| | | private String ip; |
| | | /** 最近监测在线状态 */ |
| | | private Boolean online; |
| | | /** 当日监测次数 */ |
| | | private Integer checkCount; |
| | | /** 当日离线 */ |
| | | private Integer offLineCount; |
| | | /** 设备类型 */ |
| | | private String monitorType; |
| | | /** 设备名 */ |
| | | private String name; |
| | | private WorkOrder workOrder; |
| | | } |