GbStream.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. package com.genersoft.iot.vmp.gb28181.bean;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. /**
  4. * 直播流关联国标上级平台
  5. * @author lin
  6. */
  7. @Schema(description = "直播流关联国标上级平台")
  8. public class GbStream extends PlatformGbStream{
  9. @Schema(description = "ID")
  10. private Integer gbStreamId;
  11. @Schema(description = "应用名")
  12. private String app;
  13. @Schema(description = "流ID")
  14. private String stream;
  15. @Schema(description = "国标ID")
  16. private String gbId;
  17. @Schema(description = "名称")
  18. private String name;
  19. @Schema(description = "流媒体ID")
  20. private String mediaServerId;
  21. @Schema(description = "经度")
  22. private double longitude;
  23. @Schema(description = "纬度")
  24. private double latitude;
  25. @Schema(description = "流类型(拉流/推流)")
  26. private String streamType;
  27. @Schema(description = "状态")
  28. private boolean status;
  29. @Schema(description = "创建时间")
  30. public String createTime;
  31. @Override
  32. public Integer getGbStreamId() {
  33. return gbStreamId;
  34. }
  35. @Override
  36. public void setGbStreamId(Integer gbStreamId) {
  37. this.gbStreamId = gbStreamId;
  38. }
  39. public String getApp() {
  40. return app;
  41. }
  42. public void setApp(String app) {
  43. this.app = app;
  44. }
  45. public String getStream() {
  46. return stream;
  47. }
  48. public void setStream(String stream) {
  49. this.stream = stream;
  50. }
  51. public String getGbId() {
  52. return gbId;
  53. }
  54. public void setGbId(String gbId) {
  55. this.gbId = gbId;
  56. }
  57. public String getName() {
  58. return name;
  59. }
  60. public void setName(String name) {
  61. this.name = name;
  62. }
  63. public double getLongitude() {
  64. return longitude;
  65. }
  66. public void setLongitude(double longitude) {
  67. this.longitude = longitude;
  68. }
  69. public double getLatitude() {
  70. return latitude;
  71. }
  72. public void setLatitude(double latitude) {
  73. this.latitude = latitude;
  74. }
  75. public String getStreamType() {
  76. return streamType;
  77. }
  78. public void setStreamType(String streamType) {
  79. this.streamType = streamType;
  80. }
  81. public boolean isStatus() {
  82. return status;
  83. }
  84. public void setStatus(boolean status) {
  85. this.status = status;
  86. }
  87. public String getMediaServerId() {
  88. return mediaServerId;
  89. }
  90. public void setMediaServerId(String mediaServerId) {
  91. this.mediaServerId = mediaServerId;
  92. }
  93. public String getCreateTime() {
  94. return createTime;
  95. }
  96. public void setCreateTime(String createTime) {
  97. this.createTime = createTime;
  98. }
  99. }