| | |
| | | package com.ycl.platform.domain.result.UY; |
| | | |
| | | import com.ycl.platform.domain.result.BaseResult; |
| | | import lombok.Data; |
| | | import org.springframework.data.mongodb.core.index.TextIndexed; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @since 2024-4-19 11:52:09 |
| | | */ |
| | | @Data |
| | | public class OsdMonitorResult { |
| | | @Document(collection = "uy_osd_monitor") |
| | | public class OsdMonitorResult extends BaseResult { |
| | | |
| | | /** |
| | | * 区域路径信息 |
| | | */ |
| | | @TextIndexed |
| | | private String arealayerPath; |
| | | |
| | | /** |
| | | * 区域名称 |
| | | */ |
| | | @TextIndexed |
| | | private String arealayername; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 设备 ID |
| | | */ |
| | | @TextIndexed |
| | | private String deviceId; |
| | | |
| | | /** |
| | | * 设备名称 |
| | | */ |
| | | @TextIndexed |
| | | private String deviceName; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * IP 地址 |
| | | */ |
| | | @TextIndexed |
| | | private String ip; |
| | | |
| | | /** |