| | |
| | | |
| | | 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.Date; |
| | |
| | | /** |
| | | * 设备编码,20位:中心编码、行业编码、设备类型、网络标识、设备序号,与联网平台/共享平台国标编码一致。 |
| | | */ |
| | | @TextIndexed |
| | | private String SBBM; |
| | | |
| | | /** |
| | | * 设备名称,标识设备的基本名称。命名方式参照《GAT751-2008视频图像文字标注规范》。 |
| | | */ |
| | | @TextIndexed |
| | | private String SBMC; |
| | | |
| | | /** |
| | | * 摄像机采集区域(参考文档解析) |
| | | */ |
| | | @TextIndexed |
| | | private String SXJCJQY; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * IPV4地址,摄像机IP地址。 |
| | | */ |
| | | @TextIndexed |
| | | private String IP; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * MAC地址,摄像机MAC地址。 |
| | | */ |
| | | @TextIndexed |
| | | private String MACDZ; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 设备厂商,编码1-海康威视;2-大华;3-天地伟业;4-科达;5-安讯士;6-博世;7-亚安;8-英飞拓;9-宇视;10-海信;11-中星电子;12-明景;13-联想;14-中兴;99-其他。 |
| | | */ |
| | | @TextIndexed |
| | | private String SBCS; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 点位俗称,监控点位附近如有标志性建筑、场所或监控点位处于公众约定俗成的地点,可以填写标志性建设名称和地点俗称。 |
| | | */ |
| | | @TextIndexed |
| | | private String DWSC; |
| | | |
| | | /** |