TianAoOriginal.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. package cn.com.taiji.domain;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. /**
  4. * @author xhl
  5. */
  6. public class TianAoOriginal {
  7. @ExcelProperty(value = "altitude")
  8. private String altitude;
  9. @ExcelProperty(value = "collectTime")
  10. private String collectTime;
  11. @ExcelProperty(value = "reliability")
  12. private int reliability;
  13. @ExcelProperty(value = "fusionBatchNum")
  14. private String fusionBatchNum;
  15. @ExcelProperty(value = "targetProper")
  16. private String targetProper;
  17. @ExcelProperty(value = "shipName")
  18. private String shipName;
  19. @ExcelProperty(value = "fusionTime")
  20. private String fusionTime;
  21. @ExcelProperty(value = "speed")
  22. private double speed;
  23. @ExcelProperty(value = "receiveTime")
  24. private String receiveTime;
  25. @ExcelProperty(value = "traceState")
  26. private String traceState;
  27. @ExcelProperty(value = "targetSize")
  28. private int targetSize;
  29. @ExcelProperty(value = "radarCode")
  30. private String radarCode;
  31. @ExcelProperty(value = "shipTrack")
  32. private String shipTrack;
  33. @ExcelProperty(value = "shiptracktime")
  34. private String shiptracktime;
  35. @ExcelProperty(value = "course")
  36. private String course;
  37. @ExcelProperty(value = "location")
  38. private String location;
  39. @ExcelProperty(value = "id")
  40. private String id;
  41. @ExcelProperty(value = "shipId")
  42. private String shipId;
  43. @ExcelProperty(value = "longitude")
  44. private String longitude;
  45. public void setAltitude(String altitude){
  46. this.altitude = altitude;
  47. }
  48. public String getAltitude(){
  49. return this.altitude;
  50. }
  51. public void setCollectTime(String collectTime){
  52. this.collectTime = collectTime;
  53. }
  54. public String getCollectTime(){
  55. return this.collectTime;
  56. }
  57. public void setReliability(int reliability){
  58. this.reliability = reliability;
  59. }
  60. public int getReliability(){
  61. return this.reliability;
  62. }
  63. public void setFusionBatchNum(String fusionBatchNum){
  64. this.fusionBatchNum = fusionBatchNum;
  65. }
  66. public String getFusionBatchNum(){
  67. return this.fusionBatchNum;
  68. }
  69. public void setTargetProper(String targetProper){
  70. this.targetProper = targetProper;
  71. }
  72. public String getTargetProper(){
  73. return this.targetProper;
  74. }
  75. public void setShipName(String shipName){
  76. this.shipName = shipName;
  77. }
  78. public String getShipName(){
  79. return this.shipName;
  80. }
  81. public void setFusionTime(String fusionTime){
  82. this.fusionTime = fusionTime;
  83. }
  84. public String getFusionTime(){
  85. return this.fusionTime;
  86. }
  87. public void setSpeed(double speed){
  88. this.speed = speed;
  89. }
  90. public double getSpeed(){
  91. return this.speed;
  92. }
  93. public void setReceiveTime(String receiveTime){
  94. this.receiveTime = receiveTime;
  95. }
  96. public String getReceiveTime(){
  97. return this.receiveTime;
  98. }
  99. public void setTraceState(String traceState){
  100. this.traceState = traceState;
  101. }
  102. public String getTraceState(){
  103. return this.traceState;
  104. }
  105. public void setTargetSize(int targetSize){
  106. this.targetSize = targetSize;
  107. }
  108. public int getTargetSize(){
  109. return this.targetSize;
  110. }
  111. public void setRadarCode(String radarCode){
  112. this.radarCode = radarCode;
  113. }
  114. public String getRadarCode(){
  115. return this.radarCode;
  116. }
  117. public void setShipTrack(String shipTrack){
  118. this.shipTrack = shipTrack;
  119. }
  120. public String getShipTrack(){
  121. return this.shipTrack;
  122. }
  123. public void setShiptracktime(String shiptracktime){
  124. this.shiptracktime = shiptracktime;
  125. }
  126. public String getShiptracktime(){
  127. return this.shiptracktime;
  128. }
  129. public void setCourse(String course){
  130. this.course = course;
  131. }
  132. public String getCourse(){
  133. return this.course;
  134. }
  135. public void setLocation(String location){
  136. this.location = location;
  137. }
  138. public String getLocation(){
  139. return this.location;
  140. }
  141. public void setId(String id){
  142. this.id = id;
  143. }
  144. public String getId(){
  145. return this.id;
  146. }
  147. public void setShipId(String shipId){
  148. this.shipId = shipId;
  149. }
  150. public String getShipId(){
  151. return this.shipId;
  152. }
  153. public void setLongitude(String longitude){
  154. this.longitude = longitude;
  155. }
  156. public String getLongitude(){
  157. return this.longitude;
  158. }
  159. }