BeidouShipTrackDTO.java 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package cn.com.taiji.entity;
  2. import cn.hutool.core.util.StrUtil;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. @Data
  6. public class BeidouShipTrackDTO implements Serializable {
  7. private static final long serialVersionUID = -8983779632713666636L;
  8. /**
  9. * {
  10. * "id": "eaa8d1cd0cb740c1a49b6068bd6ea9c0",
  11. * "content": "118887151,15010427,255,255,255,2023-02-09 15:30:04.000,2023-02-09 15:30:02.146,1,819.1,409.5,255,109.922777,18.3985,0.0,0.0,3,陵0102016,0,CJG_SN210100,1,34,2023-02-09 15:30:07.587",
  12. * "curren_time": "2023-02-09 15:30:06",
  13. * "trackId": 118887151,
  14. * "deviceId": 15010427,
  15. * "shipType": 255,
  16. * "workType": 255,
  17. * "workWay": 255,
  18. * "sendTime": "2023-02-09 15:30:04.000",
  19. * "locationTime": "2023-02-09 15:30:02.146",
  20. * "online": 1,
  21. * "shipLength": 819.1,
  22. * "shipWidth": 409.5,
  23. * "texture": 255,
  24. * "longitude": 109.922777,
  25. * "latitude": 18.3985,
  26. * "direction": 0.0,
  27. * "speed": 0.0,
  28. * "kwh": 3,
  29. * "shipName": "陵0102016",
  30. * "isPatrol": "0",
  31. * "gisShipPort": "CJG_SN210100",
  32. * "gisShipMaterial": "1",
  33. * "gisShipUse": "34",
  34. * "receiveTime": "2023-02-09 15:30:07.587"
  35. * }
  36. */
  37. private String id;
  38. private String content = "CJG_SN210089,1,12,2023-02-09 15:13:41.633";
  39. private String curren_time;
  40. private Integer trackId;
  41. private Integer deviceId;
  42. private Integer shipType = 255;
  43. private Integer workType = 255;
  44. private Integer workWay = 255;
  45. private String sendTime;
  46. private String locationTime;
  47. private Integer online = 1;
  48. private Double shipLength = 819.1;
  49. private Double shipWidth = 409.5;
  50. private Integer texture = 255;
  51. private Double longitude = 110.48175;
  52. private Double latitude = 18.775388;
  53. private Double direction = 0.0;
  54. private Double speed = 0.0;
  55. private Integer kwh = 1;
  56. private String shipName;
  57. private String isPatrol = "0";
  58. private String gisShipPort = "CJG_SN210089";
  59. private String gisShipMaterial = "1";
  60. private String gisShipUse = "12";
  61. private String receiveTime;
  62. }