package com.ard.vtdu.api.domian; import com.ard.common.core.annotation.Excel; import com.ard.common.core.web.domain.BaseEntity; import lombok.Data; /** * 流媒体管理对象 vtdu * * @author ard * @date 2023-08-29 */ @Data public class ArdVtdu extends BaseEntity { private static final long serialVersionUID = 1L; /** * 主键名称 */ @Excel(name = "名称") private String name; /** * rtsp源地址 */ @Excel(name = "rtsp源地址") private String rtspSource; /** * 是否转码 * 0:不转码 1:转码 */ @Excel(name = "是否转码") private Integer isCode; /** * 编解码模式 * 0:cpu 1:gpu */ @Excel(name = "编解码模式") private Integer mode; /** * 是否录像 * 0:不录像 1:录像 */ @Excel(name = "是否录像") private Integer isRecord; /** * rtsp播放地址 */ String rtspUrl; /** * rtmp播放地址 */ String rtmpUrl; /** * webrtc播放地址 */ String webrtcUrl; /** * 相机ID */ String cameraId; }