CameraPojo.java
2.5 KB
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
package com.junction.pojo;
import java.io.Serializable;
public class CameraPojo implements Serializable {
private static final long serialVersionUID = 8183688502930584159L;
private String username;// 摄像头账号
private String password;// 摄像头密码
private String ip;// 摄像头ip
private String channel;// 摄像头通道
private String stream;// 摄像头码流
private String rtsp;// rtsp地址
private String rtmp;// rtmp地址
private String url;// 播放地址
private String starttime;// 回放开始时间
private String endtime;// 回放结束时间
private String opentime;// 打开时间
private int count = 0;// 使用人数
private String token;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getChannel() {
return channel;
}
public void setChannel(String channel) {
this.channel = channel;
}
public String getStream() {
return stream;
}
public void setStream(String stream) {
this.stream = stream;
}
public String getRtsp() {
return rtsp;
}
public void setRtsp(String rtsp) {
this.rtsp = rtsp;
}
public String getRtmp() {
return rtmp;
}
public void setRtmp(String rtmp) {
this.rtmp = rtmp;
}
public String getStarttime() {
return starttime;
}
public void setStarttime(String starttime) {
this.starttime = starttime;
}
public String getEndtime() {
return endtime;
}
public void setEndTime(String endtime) {
this.endtime = endtime;
}
public String getOpentime() {
return opentime;
}
public void setOpentime(String opentime) {
this.opentime = opentime;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public String toString() {
return "CameraPojo [username=" + username + ", password=" + password + ", ip=" + ip + ", channel=" + channel
+ ", stream=" + stream + ", rtsp=" + rtsp + ", rtmp=" + rtmp + ", url=" + url + ", starttime="
+ starttime + ", endtime=" + endtime + ", opentime=" + opentime + ", count=" + count + ", token="
+ token + "]";
}
}