From 8fdd10d1c2723ead1d2c3b232f64f292ba3ce1cc Mon Sep 17 00:00:00 2001
From: che_shuai <che_shuai@massclouds>
Date: 星期一, 24 七月 2023 14:10:46 +0800
Subject: [PATCH] 修复在国标级联选择通道时,如果添加通道到跟平台根目录(即平台本身),无法触发目录变更事件问题.详见 https://github.com/648540858/wvp-GB28181-pro/issues/958

---
 src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java |   49 +++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 47 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java
index 065971d..38ba2f0 100644
--- a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java
+++ b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java
@@ -1,12 +1,42 @@
 package com.genersoft.iot.vmp.gb28181.bean;
 
+import io.swagger.v3.oas.annotations.media.Schema;
+
+/**
+ * 鍥芥爣绾ц仈-鐩綍
+ * @author lin
+ */
+@Schema(description = "鐩綍淇℃伅")
 public class PlatformCatalog {
+    @Schema(description = "ID")
     private String id;
+
+    @Schema(description = "鍚嶇О")
     private String name;
+
+    @Schema(description = "骞冲彴ID")
     private String platformId;
+
+    @Schema(description = "鐖剁骇鐩綍ID")
     private String parentId;
-    private int childrenCount; // 瀛愯妭鐐规暟
-    private int type; // 0 鐩綍, 1 鍥芥爣閫氶亾, 2 鐩存挱娴�
+
+    @Schema(description = "琛屾斂鍖哄垝")
+    private String civilCode;
+
+    @Schema(description = "鐩綍鍒嗙粍")
+    private String businessGroupId;
+
+    /**
+     * 瀛愯妭鐐规暟
+     */
+    @Schema(description = "瀛愯妭鐐规暟")
+    private int childrenCount;
+
+    /**
+     * 0 鐩綍, 1 鍥芥爣閫氶亾, 2 鐩存挱娴�
+     */
+    @Schema(description = "绫诲瀷锛�0 鐩綍, 1 鍥芥爣閫氶亾, 2 鐩存挱娴�")
+    private int type;
 
     public String getId() {
         return id;
@@ -68,4 +98,19 @@
         this.type = 2;
     }
 
+    public String getCivilCode() {
+        return civilCode;
+    }
+
+    public void setCivilCode(String civilCode) {
+        this.civilCode = civilCode;
+    }
+
+    public String getBusinessGroupId() {
+        return businessGroupId;
+    }
+
+    public void setBusinessGroupId(String businessGroupId) {
+        this.businessGroupId = businessGroupId;
+    }
 }

--
Gitblit v1.8.0