| | |
| | | package com.ycl.platform.domain.result.HK; |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * 人脸设备全检指标监测结果,2.3.0版本新增 |
| | | * 人脸设备全检指标监测结果:人脸(设备抓拍图片时钟准确性) |
| | | * |
| | | * @author gonghl |
| | | */ |
| | | @Data |
| | | public class FaceDeviceInspectionResult { |
| | | @Document(collection = "hk_face_device_inspection") |
| | | public class FaceDeviceInspectionResult extends BaseResult { |
| | | |
| | | /** |
| | | * 设备名称 |
| | | */ |
| | | @TextIndexed |
| | | private String deviceName; |
| | | |
| | | /** |
| | | * 设备编号 |
| | | */ |
| | | @TextIndexed |
| | | private String externalIndexCode; |
| | | |
| | | /** |
| | | * 卡口内码或采集设备内码,dataType为1时表示卡口内码,dataType为2或11时表示采集设备内码 |
| | | */ |
| | | @TextIndexed |
| | | private String indexCode; |
| | | |
| | | /** |
| | | * IP地址 |
| | | */ |
| | | @TextIndexed |
| | | private String networkAddr; |
| | | |
| | | /** |
| | | * 组织编号 |
| | | */ |
| | | @TextIndexed |
| | | private String orgCode; |
| | | |
| | | /** |
| | | * 组织名称 |
| | | */ |
| | | @TextIndexed |
| | | private String orgName; |
| | | |
| | | /** |