From 7ef4892f9f24f941aca37e6b3991b808a0aca619 Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期五, 08 九月 2023 11:16:35 +0800
Subject: [PATCH] 优化
---
ycl-platform/src/main/java/com/ycl/entity/video/VideoPoint.java | 21 ++++++++++++++++++++-
1 files changed, 20 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..2dfb337 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,19 @@
@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;
+
}
--
Gitblit v1.8.0