| | |
| | | |
| | | 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; |
| | | |
| | | @Data |
| | |
| | | /** |
| | | * IP地址 |
| | | */ |
| | | @TextIndexed |
| | | private QualifyResult ip; |
| | | /** |
| | | * 监控点位类型 |
| | |
| | | /** |
| | | * 设备名 |
| | | */ |
| | | @TextIndexed |
| | | private QualifyResult name; |
| | | /** |
| | | * 设备状态 |
| | |
| | | /** |
| | | * 设备编码 |
| | | */ |
| | | @TextIndexed |
| | | private QualifyResult serialNumber; |
| | | /** |
| | | * 摄像机采集区域 |
| | |
| | | * 租户id |
| | | */ |
| | | private QualifyResult tenantId; |
| | | |
| | | @Data |
| | | public static class QualifyResult { |
| | | /** |
| | |
| | | /** |
| | | * 展示值 |
| | | * */ |
| | | @TextIndexed |
| | | private String showValue; |
| | | /** |
| | | * 数据原始值,如国标码等 |
| | | */ |
| | | @TextIndexed |
| | | private String value; |
| | | } |
| | | } |