From 9d30f3aba92b1fe90eaecd486113f544f0f18b7c Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 16 八月 2024 16:41:11 +0800
Subject: [PATCH] 资产管理动态字段

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/result/UY/VideoQualityResult.java |   37 ++++++++++++++++++++++++++++++++++++-
 1 files changed, 36 insertions(+), 1 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/result/UY/VideoQualityResult.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/UY/VideoQualityResult.java
index 0a16fc4..39118cf 100644
--- a/ycl-pojo/src/main/java/com/ycl/platform/domain/result/UY/VideoQualityResult.java
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/result/UY/VideoQualityResult.java
@@ -1,66 +1,101 @@
 package com.ycl.platform.domain.result.UY;
 
+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
-public class VideoQualityResult {
+@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;
+
     /** 鎽勫儚鏈篿p */
+    @TextIndexed
     private String deviceIp;
+
     /** 鎽勫儚鏈鸿澶囧悕绉� */
+    @TextIndexed
     private String deviceName;
+
     /** 缁熻绾害 */
     private String dim;
+
     /** 鍥惧儚鏄惁姝e父 -1锛氬紓甯革紝1姝e父锛�0锛氭湭璇婃柇*/
     private Integer isImgAbnormal;
+
     /** 淇″彿鏄惁涓㈠け -1锛氬紓甯革紝1姝e父锛�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;
 }

--
Gitblit v1.8.0