WuPeng
2022-11-05 ab909feedf43a44780a6198cbd4772e9d7713fdf
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
package com.genersoft.iot.vmp.gb28181.bean;
 
import com.alibaba.fastjson2.JSONObject;
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
 
public class InviteStreamInfo {
 
    public InviteStreamInfo(MediaServerItem mediaServerItem, JSONObject response, String callId, String app, String stream) {
        this.mediaServerItem = mediaServerItem;
        this.response = response;
        this.callId = callId;
        this.app = app;
        this.stream = stream;
    }
 
    private MediaServerItem mediaServerItem;
    private JSONObject response;
    private String callId;
    private String app;
    private String stream;
 
    public MediaServerItem getMediaServerItem() {
        return mediaServerItem;
    }
 
    public void setMediaServerItem(MediaServerItem mediaServerItem) {
        this.mediaServerItem = mediaServerItem;
    }
 
    public JSONObject getResponse() {
        return response;
    }
 
    public void setResponse(JSONObject response) {
        this.response = response;
    }
 
    public String getCallId() {
        return callId;
    }
 
    public void setCallId(String callId) {
        this.callId = callId;
    }
 
    public String getApp() {
        return app;
    }
 
    public void setApp(String app) {
        this.app = app;
    }
 
    public String getStream() {
        return stream;
    }
 
    public void setStream(String stream) {
        this.stream = stream;
    }
}