| | |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * 采集设备属性监测结果:人脸(设备抓拍图片合格性) |
| | | * 采集设备属性监测结果:人脸(人脸卡口信息采集准确率) |
| | | * |
| | | * @author gonghl |
| | | */ |
| | |
| | | /** |
| | | * 组织编号 |
| | | */ |
| | | @TextIndexed |
| | | private String orgCode; |
| | | |
| | | /** |
| | | * 采集设备内码 |
| | | */ |
| | | @TextIndexed |
| | | private String indexCode; |
| | | |
| | | /** |
| | | * 国标编码(外码) |
| | | */ |
| | | @TextIndexed |
| | | private String externalIndexCode; |
| | | |
| | | /** |
| | | * 采集设备名称 |
| | | */ |
| | | @TextIndexed |
| | | private String cameraName; |
| | | |
| | | /** |