648540858
2023-07-10 04e7f48fde1b1a653d413eb41186ec7354f5ae31
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
package com.genersoft.iot.vmp.media.zlm.dto;
 
public class MediaSendRtpPortInfo {
 
    private int start;
    private int end;
    private String mediaServerId;
 
    private int current;
 
 
    public MediaSendRtpPortInfo(int start, int end, String mediaServerId) {
        this.start = start;
        this.current = start;
        this.end = end;
        this.mediaServerId = mediaServerId;
    }
 
    public int getStart() {
        return start;
    }
 
    public void setStart(int start) {
        this.start = start;
    }
 
    public int getEnd() {
        return end;
    }
 
    public void setEnd(int end) {
        this.end = end;
    }
 
    public String getMediaServerId() {
        return mediaServerId;
    }
 
    public void setMediaServerId(String mediaServerId) {
        this.mediaServerId = mediaServerId;
    }
 
    public int getCurrent() {
        return current;
    }
 
    public void setCurrent(int current) {
        this.current = current;
    }
}