移除自定义的是否支持云台属性

This commit is contained in:
lin
2025-09-26 17:31:37 +08:00
parent 8d6fe0c9d8
commit 4280a1d08e
12 changed files with 84 additions and 41 deletions

View File

@@ -14,6 +14,12 @@ public class RedisPushStreamMessage {
private String groupGbId;
// 终端所属的虚拟组织别名 可选可作为地方同步组织结构到wvp时的关联关系
private String groupAlias;
// 生产商
private String manufacturer;
// 设备型号
private String model;
// 摄像机类型
private Integer ptzType;
public StreamPush buildstreamPush() {
StreamPush push = new StreamPush();
@@ -22,6 +28,9 @@ public class RedisPushStreamMessage {
push.setGbName(name);
push.setGbDeviceId(gbId);
push.setStartOfflinePush(true);
push.setGbManufacturer(manufacturer);
push.setGbModel(model);
push.setGbPtzType(ptzType);
push.setGbStatus(status?"ON":"OFF");
return push;
}