648540858
2024-05-29 764d04b497356ba6bcbb75fd42b51eca750f7223
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.genersoft.iot.vmp.vmanager.bean;
 
public class OtherPsSendInfo {
 
    /**
     * 发流IP
     */
    private String sendLocalIp;
 
    /**
     * 发流端口
     */
    private int sendLocalPort;
 
    /**
     * 收流IP
     */
    private String receiveIp;
 
    /**
     * 收流端口
     */
    private int receivePort;
 
 
    /**
     * 会话ID
     */
    private String callId;
 
    /**
     * 流ID
     */
    private String stream;
 
    /**
     * 推流应用名
     */
    private String pushApp;
 
    /**
     * 推流流ID
     */
    private String pushStream;
 
    /**
     * 推流SSRC
     */
    private String pushSSRC;
 
    public String getSendLocalIp() {
        return sendLocalIp;
    }
 
    public void setSendLocalIp(String sendLocalIp) {
        this.sendLocalIp = sendLocalIp;
    }
 
    public int getSendLocalPort() {
        return sendLocalPort;
    }
 
    public void setSendLocalPort(int sendLocalPort) {
        this.sendLocalPort = sendLocalPort;
    }
 
    public String getReceiveIp() {
        return receiveIp;
    }
 
    public void setReceiveIp(String receiveIp) {
        this.receiveIp = receiveIp;
    }
 
    public int getReceivePort() {
        return receivePort;
    }
 
    public void setReceivePort(int receivePort) {
        this.receivePort = receivePort;
    }
 
    public String getCallId() {
        return callId;
    }
 
    public void setCallId(String callId) {
        this.callId = callId;
    }
 
    public String getStream() {
        return stream;
    }
 
    public void setStream(String stream) {
        this.stream = stream;
    }
 
    public String getPushApp() {
        return pushApp;
    }
 
    public void setPushApp(String pushApp) {
        this.pushApp = pushApp;
    }
 
    public String getPushStream() {
        return pushStream;
    }
 
    public void setPushStream(String pushStream) {
        this.pushStream = pushStream;
    }
 
    public String getPushSSRC() {
        return pushSSRC;
    }
 
    public void setPushSSRC(String pushSSRC) {
        this.pushSSRC = pushSSRC;
    }
 
    @Override
    public String toString() {
        return "OtherPsSendInfo{" +
                "sendLocalIp='" + sendLocalIp + '\'' +
                ", sendLocalPort=" + sendLocalPort +
                ", receiveIp='" + receiveIp + '\'' +
                ", receivePort=" + receivePort +
                ", callId='" + callId + '\'' +
                ", stream='" + stream + '\'' +
                ", pushApp='" + pushApp + '\'' +
                ", pushStream='" + pushStream + '\'' +
                ", pushSSRC='" + pushSSRC + '\'' +
                '}';
    }
}