临时提交

This commit is contained in:
648540858
2024-12-23 07:20:48 +08:00
parent 825daad355
commit 19453f7ca9
17 changed files with 101 additions and 59 deletions

View File

@@ -0,0 +1,25 @@
package com.genersoft.iot.vmp.common.enums;
import lombok.Getter;
/**
* 支持的通道数据类型
*/
public enum ChannelDataType {
GB28181(1,"国标28181"),
STREAM_PUSH(2,"推流设备"),
STREAM_PROXY(3,"拉流代理");
public final int value;
public final String desc;
ChannelDataType(Integer value, String desc) {
this.value = value;
this.desc = desc;
}
}