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/storager/dao/dto/RecordInfo.java | 133 ++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 133 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/genersoft/iot/vmp/storager/dao/dto/RecordInfo.java b/src/main/java/com/genersoft/iot/vmp/storager/dao/dto/RecordInfo.java
new file mode 100644
index 0000000..278e3e4
--- /dev/null
+++ b/src/main/java/com/genersoft/iot/vmp/storager/dao/dto/RecordInfo.java
@@ -0,0 +1,133 @@
+package com.genersoft.iot.vmp.storager.dao.dto;
+
+/**
+ * 录像记录
+ */
+public class RecordInfo {
+
+ /**
+ * ID
+ */
+ private int id;
+
+ /**
+ * 应用名
+ */
+ private String app;
+
+ /**
+ * 流ID
+ */
+ private String stream;
+
+ /**
+ * 对应的zlm流媒体的ID
+ */
+ private String mediaServerId;
+
+ /**
+ * 创建时间
+ */
+ private String createTime;
+
+ /**
+ * 类型 对应zlm的 originType
+ * unknown = 0,
+ * rtmp_push=1,
+ * rtsp_push=2,
+ * rtp_push=3,
+ * pull=4,
+ * ffmpeg_pull=5,
+ * mp4_vod=6,
+ * device_chn=7,
+ * rtc_push=8
+ */
+ private int type;
+
+ /**
+ * 国标录像时的设备ID
+ */
+ private String deviceId;
+
+ /**
+ * 国标录像时的通道ID
+ */
+ private String channelId;
+
+ /**
+ * 拉流代理录像时的名称
+ */
+ private String name;
+
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ public String getApp() {
+ return app;
+ }
+
+ public void setApp(String app) {
+ this.app = app;
+ }
+
+ public String getStream() {
+ return stream;
+ }
+
+ public void setStream(String stream) {
+ this.stream = stream;
+ }
+
+ public String getMediaServerId() {
+ return mediaServerId;
+ }
+
+ public void setMediaServerId(String mediaServerId) {
+ this.mediaServerId = mediaServerId;
+ }
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime;
+ }
+
+ public int getType() {
+ return type;
+ }
+
+ public void setType(int type) {
+ this.type = type;
+ }
+
+ public String getDeviceId() {
+ return deviceId;
+ }
+
+ public void setDeviceId(String deviceId) {
+ this.deviceId = deviceId;
+ }
+
+ public String getChannelId() {
+ return channelId;
+ }
+
+ public void setChannelId(String channelId) {
+ this.channelId = channelId;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+}
--
Gitblit v1.9.3