增加推流转发到国标,尚不完善

This commit is contained in:
panlinlin
2021-04-02 19:04:01 +08:00
parent f83a192bfd
commit b17280522b
42 changed files with 720 additions and 509 deletions

View File

@@ -12,6 +12,7 @@ public class GbStream extends PlatformGbStream{
private double longitude;
private double latitude;
private String streamType;
private boolean status;
public String getApp() {
return app;
@@ -68,4 +69,12 @@ public class GbStream extends PlatformGbStream{
public void setStreamType(String streamType) {
this.streamType = streamType;
}
public boolean isStatus() {
return status;
}
public void setStatus(boolean status) {
this.status = status;
}
}

View File

@@ -28,4 +28,5 @@ public class PlatformGbStream {
public void setPlatformId(String platformId) {
this.platformId = platformId;
}
}