| | |
| | | |
| | | 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 |
| | | */ |
| | | @Data |
| | | @Document(collection = "attr_recognition_monitor") |
| | | @Document(collection = "hk_attr_recognition_monitor") |
| | | public class AttrRecognitionMonitorResult extends BaseResult { |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 设备或卡口国标编码 |
| | | */ |
| | | @TextIndexed |
| | | private String externalIndexCode; |
| | | |
| | | /** |
| | | * 设备或卡口名称 |
| | | */ |
| | | @TextIndexed |
| | | private String deviceName; |
| | | |
| | | /** |