MobilePosition.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package com.genersoft.iot.vmp.gb28181.bean;
  2. /**
  3. * @description: 移动位置bean
  4. * @author: lawrencehj
  5. * @date: 2021年1月23日
  6. */
  7. public class MobilePosition {
  8. /**
  9. * 设备Id
  10. */
  11. private String deviceId;
  12. /**
  13. * 通道Id
  14. */
  15. private String channelId;
  16. /**
  17. * 设备名称
  18. */
  19. private String deviceName;
  20. /**
  21. * 通知时间
  22. */
  23. private String time;
  24. /**
  25. * 经度
  26. */
  27. private double longitude;
  28. /**
  29. * 纬度
  30. */
  31. private double latitude;
  32. /**
  33. * 海拔高度
  34. */
  35. private double altitude;
  36. /**
  37. * 速度
  38. */
  39. private double speed;
  40. /**
  41. * 方向
  42. */
  43. private double direction;
  44. /**
  45. * 位置信息上报来源(Mobile Position、GPS Alarm)
  46. */
  47. private String reportSource;
  48. /**
  49. * 国内地理坐标系(GCJ-02 / BD-09)
  50. */
  51. private String GeodeticSystem;
  52. /**
  53. * 国内坐标系:经度坐标
  54. */
  55. private String cnLng;
  56. /**
  57. * 国内坐标系:纬度坐标
  58. */
  59. private String cnLat;
  60. public String getDeviceId() {
  61. return deviceId;
  62. }
  63. public void setDeviceId(String deviceId) {
  64. this.deviceId = deviceId;
  65. }
  66. public String getDeviceName() {
  67. return deviceName;
  68. }
  69. public void setDeviceName(String deviceName) {
  70. this.deviceName = deviceName;
  71. }
  72. public String getTime() {
  73. return time;
  74. }
  75. public void setTime(String time) {
  76. this.time = time;
  77. }
  78. public double getLongitude() {
  79. return longitude;
  80. }
  81. public void setLongitude(double longitude) {
  82. this.longitude = longitude;
  83. }
  84. public double getLatitude() {
  85. return latitude;
  86. }
  87. public void setLatitude(double latitude) {
  88. this.latitude = latitude;
  89. }
  90. public double getAltitude() {
  91. return altitude;
  92. }
  93. public void setAltitude(double altitude) {
  94. this.altitude = altitude;
  95. }
  96. public double getSpeed() {
  97. return speed;
  98. }
  99. public void setSpeed(double speed) {
  100. this.speed = speed;
  101. }
  102. public double getDirection() {
  103. return direction;
  104. }
  105. public void setDirection(double direction) {
  106. this.direction = direction;
  107. }
  108. public String getReportSource() {
  109. return reportSource;
  110. }
  111. public void setReportSource(String reportSource) {
  112. this.reportSource = reportSource;
  113. }
  114. public String getGeodeticSystem() {
  115. return GeodeticSystem;
  116. }
  117. public void setGeodeticSystem(String geodeticSystem) {
  118. GeodeticSystem = geodeticSystem;
  119. }
  120. public String getCnLng() {
  121. return cnLng;
  122. }
  123. public void setCnLng(String cnLng) {
  124. this.cnLng = cnLng;
  125. }
  126. public String getCnLat() {
  127. return cnLat;
  128. }
  129. public void setCnLat(String cnLat) {
  130. this.cnLat = cnLat;
  131. }
  132. public String getChannelId() {
  133. return channelId;
  134. }
  135. public void setChannelId(String channelId) {
  136. this.channelId = channelId;
  137. }
  138. }