| | |
| | | |
| | | 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; |
| | |
| | | /** |
| | | * 区域路径信息 |
| | | */ |
| | | @TextIndexed |
| | | private String arealayerPath; |
| | | |
| | | /** |
| | | * 区域名称 |
| | | */ |
| | | @TextIndexed |
| | | private String arealayername; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 设备 ID |
| | | */ |
| | | @TextIndexed |
| | | private String deviceId; |
| | | |
| | | /** |
| | | * 设备名称 |
| | | */ |
| | | @TextIndexed |
| | | private String deviceName; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * IP 地址 |
| | | */ |
| | | @TextIndexed |
| | | private String ip; |
| | | |
| | | /** |