| | |
| | | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | @Data |
| | | @Document(collection = "uy_video_quality") |
| | | public class VideoQualityResult extends BaseResult { |
| | | |
| | | /** 行政区划编码 */ |
| | | private String arealayernoCode; |
| | | |
| | | /** 行政区划名称 */ |
| | | @TextIndexed |
| | | private String arealayernoName; |
| | | |
| | | /** 模糊 */ |
| | | private Integer blur; |
| | | |
| | | /** 模糊原始分值 */ |
| | | private Integer blurRaw; |
| | | |
| | | /** 颜色 */ |
| | | private Integer color; |
| | | |
| | | /** 颜色原始分值 */ |
| | | private Integer colorRaw; |
| | | |
| | | /** 摄像机-国标id */ |
| | | private String deviceId; |
| | | |
| | | /** 摄像机ip */ |
| | | @TextIndexed |
| | | private String deviceIp; |
| | | |
| | | /** 摄像机设备名称 */ |
| | | @TextIndexed |
| | | private String deviceName; |
| | | |
| | | /** 统计纬度 */ |
| | | private String dim; |
| | | |
| | | /** 图像是否正常 -1:异常,1正常,0:未诊断*/ |
| | | private Integer isImgAbnormal; |
| | | |
| | | /** 信号是否丢失 -1:异常,1正常,0:未诊断*/ |
| | | private Integer isSignalMiss; |
| | | |
| | | /** 亮度 */ |
| | | private Integer light; |
| | | |
| | | /** 亮度原始分值 */ |
| | | private Integer lightRaw; |
| | | |
| | | /** 遮挡 */ |
| | | private Integer shade; |
| | | |
| | | /** 遮挡原始分值 */ |
| | | private Integer shadeRaw; |
| | | |
| | | /** 抖动 */ |
| | | private Integer shake; |
| | | |
| | | /** 抖动原始分值 */ |
| | | private Integer shakeRaw; |
| | | |
| | | /** 无信号 */ |
| | | private Integer signal; |
| | | |
| | | /** 无信号原始分值 */ |
| | | private Integer signalRaw; |
| | | |
| | | /** 雪花 */ |
| | | private Integer snow; |
| | | |
| | | /** 雪花原始分值 */ |
| | | private Integer snowRaw; |
| | | |
| | | /** 排序属性 */ |
| | | private String sortFiled; |
| | | |
| | | /** 诊断状态编码 -1:异常,1:正常,0:未诊断 */ |
| | | private String status; |
| | | |
| | | /** 诊断状态名称 */ |
| | | private String statusName; |
| | | |
| | | /** 条纹 */ |
| | | private Integer stripe; |
| | | |
| | | /** 条纹原始分值 */ |
| | | private Integer stripeRaw; |
| | | |
| | | /** 诊断时间 */ |
| | | private String vqdTime; |
| | | } |