From 1cad14bca191807e18705c3a5526eda8151be439 Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期一, 14 四月 2025 23:10:22 +0800
Subject: [PATCH] 批量审核和图片保存bug

---
 ycl-platform/src/main/java/com/ycl/entity/video/VideoPoint.java |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/ycl-platform/src/main/java/com/ycl/entity/video/VideoPoint.java b/ycl-platform/src/main/java/com/ycl/entity/video/VideoPoint.java
index 850702c..46a6ab8 100644
--- a/ycl-platform/src/main/java/com/ycl/entity/video/VideoPoint.java
+++ b/ycl-platform/src/main/java/com/ycl/entity/video/VideoPoint.java
@@ -10,8 +10,10 @@
 
 import java.io.Serializable;
 
+import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
 
 /**
  * <p>
@@ -24,6 +26,7 @@
 @Data
 @EqualsAndHashCode(callSuper = false)
 @TableName("ums_video_point")
+@NoArgsConstructor
 public class VideoPoint implements Serializable {
 
     private static final long serialVersionUID = 1L;
@@ -53,7 +56,8 @@
     private String name;
 
     /**
-     * 璁惧缂栫爜鍞竴
+     * 璁惧閫氶亾鐮�
+     * 娴峰悍瀛楁 cameraIndexCode
      */
     @TableField("plat_resource_id")
     private String platResourceId;
@@ -100,4 +104,21 @@
     @TableField("address")
     private String address;
 
+    /**
+     * 璁惧鐮�
+     * 娴峰悍瀛楁 deviceIndexCode
+     */
+    @TableField("code")
+    private String code;
+
+    @TableField(value = "grid_id")
+    @ApiModelProperty(value = "缃戞牸id")
+    private Long gridId;
+
+    @TableField(value = "type")
+    @ApiModelProperty(value = "0-鍘熸潵澶у崕瑙嗛锛�1-鏂板鎺�100璺捣搴疯棰�")
+    private Integer type;
+
+    @TableField("channel_id")
+    private Integer channelId;
 }

--
Gitblit v1.8.0