ancienter
2024-04-09 25ff2fc4ef2ad4bfccf6d2059d0159608ad71f8f
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
package com.genersoft.iot.vmp.gb28181.bean;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
/**
 * @author lin
 */
@Schema(description = "平台信息")
public class ParentPlatform {
 
    /**
     * id
     */
    @Schema(description = "ID(数据库中)")
    private Integer id;
 
    /**
     * 是否启用
     */
    @Schema(description = "是否启用")
    private boolean enable;
 
    /**
     * 名称
     */
    @Schema(description = "名称")
    private String name;
 
    /**
     * SIP服务国标编码
     */
    @Schema(description = "SIP服务国标编码")
    private String serverGBId;
 
    /**
     * SIP服务国标域
     */
    @Schema(description = "SIP服务国标域")
    private String serverGBDomain;
 
    /**
     * SIP服务IP
     */
    @Schema(description = "SIP服务IP")
    private String serverIP;
 
    /**
     * SIP服务端口
     */
    @Schema(description = "SIP服务端口")
    private int serverPort;
 
    /**
     * 设备国标编号
     */
    @Schema(description = "设备国标编号")
    private String deviceGBId;
 
    /**
     * 设备ip
     */
    @Schema(description = "设备ip")
    private String deviceIp;
 
    /**
     * 设备端口
     */
    @Schema(description = "设备端口")
    private int devicePort;
 
    /**
     * SIP认证用户名(默认使用设备国标编号)
     */
    @Schema(description = "SIP认证用户名(默认使用设备国标编号)")
    private String username;
 
    /**
     * SIP认证密码
     */
    @Schema(description = "SIP认证密码")
    private String password;
 
    /**
     * 注册周期 (秒)
     */
    @Schema(description = "注册周期 (秒)")
    private int expires;
 
    /**
     * 心跳周期(秒)
     */
    @Schema(description = "心跳周期(秒)")
    private int keepTimeout;
 
    /**
     * 传输协议
     * UDP/TCP
     */
    @Schema(description = "传输协议")
    private String transport;
 
    /**
     * 字符集
     */
    @Schema(description = "字符集")
    private String characterSet;
 
    /**
     * 允许云台控制
     */
    @Schema(description = "允许云台控制")
    private boolean ptz;
 
    /**
     * RTCP流保活
     */
    @Schema(description = "RTCP流保活")
    private boolean rtcp;
 
    /**
     * 在线状态
     */
    @Schema(description = "在线状态")
    private boolean status;
 
    /**
     * 在线状态
     */
    @Schema(description = "在线状态")
    private int channelCount;
 
    /**
     * 默认目录Id,自动添加的通道多放在这个目录下
     */
    @Schema(description = "默认目录Id,自动添加的通道多放在这个目录下")
    private String catalogId;
 
    /**
     * 已被订阅目录信息
     */
    @Schema(description = "已被订阅目录信息")
    private boolean catalogSubscribe;
 
    /**
     * 已被订阅报警信息
     */
    @Schema(description = "已被订阅报警信息")
    private boolean alarmSubscribe;
 
    /**
     * 已被订阅移动位置信息
     */
    @Schema(description = "已被订阅移动位置信息")
    private boolean mobilePositionSubscribe;
 
    /**
     * 点播未推流的设备时是否使用redis通知拉起
     */
    @Schema(description = "点播未推流的设备时是否使用redis通知拉起")
    private boolean startOfflinePush;
 
    /**
     * 目录分组-每次向上级发送通道信息时单个包携带的通道数量,取值1,2,4,8
     */
    @Schema(description = "目录分组-每次向上级发送通道信息时单个包携带的通道数量,取值1,2,4,8")
    private int catalogGroup;
 
    /**
     * 行政区划
     */
    @Schema(description = "行政区划")
    private String administrativeDivision;
 
    /**
     * 更新时间
     */
    @Schema(description = "更新时间")
    private String updateTime;
 
    /**
     * 创建时间
     */
    @Schema(description = "创建时间")
    private String createTime;
 
    @Schema(description = "是否作为消息通道")
    private boolean asMessageChannel;
 
    @Schema(description = "是否作为消息通道")
    private boolean autoPushChannel;
 
    @Schema(description = "点播回复200OK使用次IP")
    private String sendStreamIp;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public boolean isEnable() {
        return enable;
    }
 
    public void setEnable(boolean enable) {
        this.enable = enable;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getServerGBId() {
        return serverGBId;
    }
 
    public void setServerGBId(String serverGBId) {
        this.serverGBId = serverGBId;
    }
 
    public String getServerGBDomain() {
        return serverGBDomain;
    }
 
    public void setServerGBDomain(String serverGBDomain) {
        this.serverGBDomain = serverGBDomain;
    }
 
    public String getServerIP() {
        return serverIP;
    }
 
    public void setServerIP(String serverIP) {
        this.serverIP = serverIP;
    }
 
    public int getServerPort() {
        return serverPort;
    }
 
    public void setServerPort(int serverPort) {
        this.serverPort = serverPort;
    }
 
    public String getDeviceGBId() {
        return deviceGBId;
    }
 
    public void setDeviceGBId(String deviceGBId) {
        this.deviceGBId = deviceGBId;
    }
 
    public String getDeviceIp() {
        return deviceIp;
    }
 
    public void setDeviceIp(String deviceIp) {
        this.deviceIp = deviceIp;
    }
 
    public int getDevicePort() {
        return devicePort;
    }
 
    public void setDevicePort(int devicePort) {
        this.devicePort = devicePort;
    }
 
    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 int getExpires() {
        return expires;
    }
 
    public void setExpires(int expires) {
        this.expires = expires;
    }
 
    public int getKeepTimeout() {
        return keepTimeout;
    }
 
    public void setKeepTimeout(int keepTimeout) {
        this.keepTimeout = keepTimeout;
    }
 
    public String getTransport() {
        return transport;
    }
 
    public void setTransport(String transport) {
        this.transport = transport;
    }
 
    public String getCharacterSet() {
        return characterSet;
    }
 
    public void setCharacterSet(String characterSet) {
        this.characterSet = characterSet;
    }
 
    public boolean isPtz() {
        return ptz;
    }
 
    public void setPtz(boolean ptz) {
        this.ptz = ptz;
    }
 
    public boolean isRtcp() {
        return rtcp;
    }
 
    public void setRtcp(boolean rtcp) {
        this.rtcp = rtcp;
    }
 
    public boolean isStatus() {
        return status;
    }
 
    public void setStatus(boolean status) {
        this.status = status;
    }
 
    public int getChannelCount() {
        return channelCount;
    }
 
    public void setChannelCount(int channelCount) {
        this.channelCount = channelCount;
    }
 
    public String getCatalogId() {
        return catalogId;
    }
 
    public void setCatalogId(String catalogId) {
        this.catalogId = catalogId;
    }
 
    public boolean isCatalogSubscribe() {
        return catalogSubscribe;
    }
 
    public void setCatalogSubscribe(boolean catalogSubscribe) {
        this.catalogSubscribe = catalogSubscribe;
    }
 
    public boolean isAlarmSubscribe() {
        return alarmSubscribe;
    }
 
    public void setAlarmSubscribe(boolean alarmSubscribe) {
        this.alarmSubscribe = alarmSubscribe;
    }
 
    public boolean isMobilePositionSubscribe() {
        return mobilePositionSubscribe;
    }
 
    public void setMobilePositionSubscribe(boolean mobilePositionSubscribe) {
        this.mobilePositionSubscribe = mobilePositionSubscribe;
    }
 
    public boolean isStartOfflinePush() {
        return startOfflinePush;
    }
 
    public void setStartOfflinePush(boolean startOfflinePush) {
        this.startOfflinePush = startOfflinePush;
    }
 
    public int getCatalogGroup() {
        return catalogGroup;
    }
 
    public void setCatalogGroup(int catalogGroup) {
        this.catalogGroup = catalogGroup;
    }
 
    public String getAdministrativeDivision() {
        return administrativeDivision;
    }
 
    public void setAdministrativeDivision(String administrativeDivision) {
        this.administrativeDivision = administrativeDivision;
    }
 
    public String getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public boolean isAsMessageChannel() {
        return asMessageChannel;
    }
 
    public void setAsMessageChannel(boolean asMessageChannel) {
        this.asMessageChannel = asMessageChannel;
    }
 
    public boolean isAutoPushChannel() {
        return autoPushChannel;
    }
 
    public void setAutoPushChannel(boolean autoPushChannel) {
        this.autoPushChannel = autoPushChannel;
    }
 
    public String getSendStreamIp() {
        return sendStreamIp;
    }
 
    public void setSendStreamIp(String sendStreamIp) {
        this.sendStreamIp = sendStreamIp;
    }
}