公告板
版本库
filestore
活动
搜索
登录
main
/
wvp-pro
搭配zgyw,实现gb28181
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
优化设备状态保持,自动记录心跳间隔,三次心跳失败则设备离线,不在使用设备有效期字段作为唯一判断标准,提高容错能力和稳定性。
648540858
2023-01-04
a82b831b8b2b96dfa5791808f1207500e16697cf
[wvp-pro.git]
/
src
/
main
/
java
/
com
/
genersoft
/
iot
/
vmp
/
gb28181
/
bean
/
PlatformRegister.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.genersoft.iot.vmp.gb28181.bean;
public class PlatformRegister {
// 未回复次数
private int reply;
public int getReply() {
return reply;
}
public void setReply(int reply) {
this.reply = reply;
}
}