123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.fdkankan.fusion.response;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fdkankan.fusion.entity.Model;
- import lombok.Data;
- import java.util.Date;
- @Data
- public class SceneVo extends Model {
- private Long id;
- private Integer buildObjStatus;
- private String createTime;
- private String name;
- private String num;
- private Integer payStatus;
- private String sceneName;
- private String snCode;
- private Integer status;
- private String thumb;
- private String title;
- private Integer viewCount;
- private Boolean isLaser;
- private Integer type; // 0 四维看看,1看见场景,2 深时场景,3 三维模型
- private String phone;
- private Boolean bind = true;
- private String deptId;
- private String deptName;
- /**
- * " Scene_Location_Slam = 0, //slam\n" +
- * " Scene_Location_SFM 1 , //sfm\n" +
- * " Scene_Location_SFMAI 2, //SFM + AI\n" +
- * " Scene_Location_MutiFloor 3 , //多楼层\n" +
- * " Scene_Location_PointCloud 4, //点云\n" +
- * " Scene_Location_SLAMPoint 5, //slam实时拍\n" +
- * " Scene_Location_SLAMPointAndSFMAI 6 //slam实时拍+站点\n" +
- */
- private Integer location;
- private Boolean inFusion = false;
- private Boolean inCase = false;
- /**
- * 模型方向(只有激光场景才有)
- */
- private String orientation;
- /**
- * laser推送经纬度信息
- */
- private String rtkLocation;
- private Long sceneSize; //场景大小
- private String algorithmTime;
- private String shootTime;
- private String mapping ;
- private String webPath ;
- }
|