648540858
2022-02-27 e94b99d11c46246532edc93cd25cbf8c0b88f03f
src/main/java/com/genersoft/iot/vmp/gb28181/bean/SendRtpItem.java
@@ -22,7 +22,17 @@
     */
    private String platformId;
     /**
     * 对应设备id
     */
    private String deviceId;
    /**
     * 直播流的应用名
     */
    private String app;
   /**
     * 通道id
     */
    private String channelId;
@@ -35,10 +45,6 @@
     */
    private int status = 0;
    /**
     * 设备推流的app
     */
    private String app = "rtp";
    /**
     * 设备推流的streamId
@@ -59,6 +65,21 @@
     * 自己推流使用的端口
     */
    private int localPort;
    /**
     * 使用的流媒体
     */
    private String mediaServerId;
    /**
     *  invite的callId
     */
    private String CallId;
    /**
     * 是否是play, false是playback
     */
    private boolean isPlay;
    public String getIp() {
        return ip;
@@ -90,6 +111,14 @@
    public void setPlatformId(String platformId) {
        this.platformId = platformId;
    }
    public String getDeviceId() {
        return deviceId;
    }
    public void setDeviceId(String deviceId) {
        this.deviceId = deviceId;
    }
    public String getChannelId() {
@@ -147,4 +176,28 @@
    public void setTcpActive(boolean tcpActive) {
        this.tcpActive = tcpActive;
    }
    public String getMediaServerId() {
        return mediaServerId;
    }
    public void setMediaServerId(String mediaServerId) {
        this.mediaServerId = mediaServerId;
    }
    public String getCallId() {
        return CallId;
    }
    public void setCallId(String callId) {
        CallId = callId;
    }
    public boolean isPlay() {
        return isPlay;
    }
    public void setPlay(boolean play) {
        isPlay = play;
    }
}