ControlPointEntity.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.fdkankan.openApi.entity.laser;
  2. import com.fdkankan.mongodb.base.BaseMongoEntity;
  3. import lombok.Data;
  4. import org.springframework.data.mongodb.core.mapping.Document;
  5. /**
  6. * Created by Xiewj on 2021/7/29 0029 18:34
  7. * 控制点实体
  8. * lat:113, [0], lon:22, [1]
  9. */
  10. @Data
  11. @Document(collection = "t_control_point")
  12. public class ControlPointEntity extends BaseMongoEntity {
  13. private String dataset_id;
  14. private String sceneCode;
  15. // 四维看看控制点
  16. private double[] ageControlLocation1;
  17. private double[] ageControlLocation2;
  18. // gps坐标
  19. private double[] gpsControlCoordinate1;
  20. private double[] gpsControlCoordinate2;
  21. // gps坐标
  22. private double[] gps84ControlCoordinate1;
  23. private double[] gps84ControlCoordinate2;
  24. private double[] defaultGisP1;
  25. private double[] defaultGisP2;
  26. private double[] defaultLocation1;
  27. private double[] defaultLocation2;
  28. private Integer status;
  29. private String[] gpsRaw1;
  30. private String[] gpsRaw2;
  31. private String outType;
  32. private String epsg;
  33. private String roamingPointId1;
  34. private String roamingPointId2;
  35. }