fuliqi
2024-09-11 b14531e3b850fe6d2fa916ba7b88b3e2bd2ff30a
ycl-pojo/src/main/java/com/ycl/platform/domain/result/HK/DataIntegrityMonitoringResult.java
@@ -1,33 +1,41 @@
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.2.0版本新增
 * 数据完整性监测结果:车量(车辆卡口设备抓拍数据完整性、)
 *
 * @author gonghl
 */
@Data
public class DataIntegrityMonitoringResult extends BaseResult{
@Document(collection = "hk_data_integrity_monitoring")
public class DataIntegrityMonitoringResult extends BaseResult {
    /**
     * 卡口内码或采集设备内码,dataType为1时表示卡口内码,dataType为11时表示采集设备内码
     */
    @TextIndexed
    private String indexCode;
    /**
     /**
     * 设备或卡口国标编码
     */
     @TextIndexed
    private String externalIndexCode;
    /**
     * 设备或卡口名称
     */
    @TextIndexed
    private String deviceName;
    /**
     * 组织编号
     */
    @TextIndexed
    private String orgCode;
    /**