|
@@ -1,6 +1,7 @@
|
|
|
package com.fdkankan.ucenter.vo.response;
|
|
|
|
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
@@ -78,4 +79,16 @@ public class SceneProEntityVo implements Serializable {
|
|
|
|
|
|
private Integer shootCount;
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模型方向(只有激光场景才有)
|
|
|
+ */
|
|
|
+ @TableField("orientation")
|
|
|
+ private String orientation;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * laser推送经纬度信息
|
|
|
+ */
|
|
|
+ @TableField("rtk_location")
|
|
|
+ private String rtkLocation;
|
|
|
}
|