GbStream.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package com.genersoft.iot.vmp.gb28181.bean;
  2. /**
  3. * 直播流关联国标上级平台
  4. */
  5. public class GbStream extends PlatformGbStream{
  6. private int id;
  7. private String app;
  8. private String stream;
  9. private String gbId;
  10. private String name;
  11. private String mediaServerId;
  12. private double longitude;
  13. private double latitude;
  14. private String streamType;
  15. private boolean status;
  16. /**
  17. * GMT unix系统时间戳,单位秒
  18. */
  19. public Long createStamp;
  20. public int getId() {
  21. return id;
  22. }
  23. public void setId(int id) {
  24. this.id = id;
  25. }
  26. public String getApp() {
  27. return app;
  28. }
  29. public void setApp(String app) {
  30. this.app = app;
  31. }
  32. public String getStream() {
  33. return stream;
  34. }
  35. public void setStream(String stream) {
  36. this.stream = stream;
  37. }
  38. public String getGbId() {
  39. return gbId;
  40. }
  41. public void setGbId(String gbId) {
  42. this.gbId = gbId;
  43. }
  44. public String getName() {
  45. return name;
  46. }
  47. public void setName(String name) {
  48. this.name = name;
  49. }
  50. public double getLongitude() {
  51. return longitude;
  52. }
  53. public void setLongitude(double longitude) {
  54. this.longitude = longitude;
  55. }
  56. public double getLatitude() {
  57. return latitude;
  58. }
  59. public void setLatitude(double latitude) {
  60. this.latitude = latitude;
  61. }
  62. public String getStreamType() {
  63. return streamType;
  64. }
  65. public void setStreamType(String streamType) {
  66. this.streamType = streamType;
  67. }
  68. public boolean isStatus() {
  69. return status;
  70. }
  71. public void setStatus(boolean status) {
  72. this.status = status;
  73. }
  74. public String getMediaServerId() {
  75. return mediaServerId;
  76. }
  77. public void setMediaServerId(String mediaServerId) {
  78. this.mediaServerId = mediaServerId;
  79. }
  80. public Long getCreateStamp() {
  81. return createStamp;
  82. }
  83. public void setCreateStamp(Long createStamp) {
  84. this.createStamp = createStamp;
  85. }
  86. }