From f1d079f9c0b3d384090477ca54e0548373d62b57 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Thu, 16 Jan 2025 11:56:39 +0800
Subject: [PATCH] 配置修改
---
src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/platform/bean/ChannelReduce.java | 137 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 137 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/platform/bean/ChannelReduce.java b/src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/platform/bean/ChannelReduce.java
new file mode 100644
index 0000000..cbe9a3b
--- /dev/null
+++ b/src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/platform/bean/ChannelReduce.java
@@ -0,0 +1,137 @@
+package com.genersoft.iot.vmp.vmanager.gb28181.platform.bean;
+
+import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
+import io.swagger.v3.oas.annotations.media.Schema;
+
+/**
+ * 精简的channel信息展示,主要是选择通道的时候展示列表使用
+ */
+@Schema(description = "精简的channel信息展示")
+public class ChannelReduce {
+
+ /**
+ * deviceChannel的数据库自增ID
+ */
+ @Schema(description = "deviceChannel的数据库自增ID")
+ private int id;
+
+ /**
+ * 通道id
+ */
+ @Schema(description = "通道国标编号")
+ private String channelId;
+
+ /**
+ * 设备id
+ */
+ @Schema(description = "设备国标编号")
+ private String deviceId;
+
+ /**
+ * 通道名
+ */
+ @Schema(description = "通道名")
+ private String name;
+
+ /**
+ * 生产厂商
+ */
+ @Schema(description = "生产厂商")
+ private String manufacture;
+
+ /**
+ * wan地址
+ */
+ @Schema(description = "wan地址")
+ private String hostAddress;
+
+ /**
+ * 子节点数
+ */
+ @Schema(description = "子节点数")
+ private int subCount;
+
+ /**
+ * 平台Id
+ */
+ @Schema(description = "平台上级国标编号")
+ private String platformId;
+
+ /**
+ * 目录Id
+ */
+ @Schema(description = "目录国标编号")
+ private String catalogId;
+
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ public String getChannelId() {
+ return channelId;
+ }
+
+ public void setChannelId(String channelId) {
+ this.channelId = channelId;
+ }
+
+ public String getDeviceId() {
+ return deviceId;
+ }
+
+ public void setDeviceId(String deviceId) {
+ this.deviceId = deviceId;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getmanufacture() {
+ return manufacture;
+ }
+
+ public void setmanufacture(String manufacture) {
+ this.manufacture = manufacture;
+ }
+
+ public String getHostAddress() {
+ return hostAddress;
+ }
+
+ public void setHostAddress(String hostAddress) {
+ this.hostAddress = hostAddress;
+ }
+
+ public int getSubCount() {
+ return subCount;
+ }
+
+ public void setSubCount(int subCount) {
+ this.subCount = subCount;
+ }
+
+ public String getPlatformId() {
+ return platformId;
+ }
+
+ public void setPlatformId(String platformId) {
+ this.platformId = platformId;
+ }
+
+ public String getCatalogId() {
+ return catalogId;
+ }
+
+ public void setCatalogId(String catalogId) {
+ this.catalogId = catalogId;
+ }
+}
--
Gitblit v1.9.3