package com.ruoyi.media.domain;
|
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 流媒体管理对象 vtdu
|
*
|
* @author ard
|
* @date 2023-08-29
|
*/
|
@Data
|
public class Vtdu extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 主键名称
|
*/
|
@Excel(name = "名称")
|
private String name;
|
|
/**
|
* rtsp源地址
|
*/
|
@Excel(name = "rtsp源地址")
|
private String rtspSource;
|
|
/**
|
* 是否转码
|
*/
|
@Excel(name = "是否转码")
|
private String isCode;
|
|
/**
|
* 编解码模式
|
*/
|
@Excel(name = "编解码模式")
|
private String mode;
|
|
/**
|
* rtsp播放地址
|
*/
|
String rtspUrl;
|
/**
|
* rtmp播放地址
|
*/
|
String rtmpUrl;
|
/**
|
* webrtc播放地址
|
*/
|
String webrtcUrl;
|
/**
|
* 相机ID
|
*/
|
String cameraId;
|
}
|