12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.fdkankan.openApi.entity.laser;
- import com.fdkankan.mongodb.base.BaseMongoEntity;
- import lombok.Data;
- import org.springframework.data.mongodb.core.mapping.Document;
- /**
- * Created by Xiewj on 2021/7/29 0029 18:34
- * 控制点实体
- * lat:113, [0], lon:22, [1]
- */
- @Data
- @Document(collection = "t_control_point")
- public class ControlPointEntity extends BaseMongoEntity {
- private String dataset_id;
- private String sceneCode;
-
- // 四维看看控制点
- private double[] ageControlLocation1;
- private double[] ageControlLocation2;
- // gps坐标
- private double[] gpsControlCoordinate1;
- private double[] gpsControlCoordinate2;
- // gps坐标
- private double[] gps84ControlCoordinate1;
- private double[] gps84ControlCoordinate2;
- private double[] defaultGisP1;
- private double[] defaultGisP2;
- private double[] defaultLocation1;
- private double[] defaultLocation2;
- private Integer status;
- private String[] gpsRaw1;
- private String[] gpsRaw2;
- private String outType;
- private String epsg;
- private String roamingPointId1;
- private String roamingPointId2;
- }
|