SceneVo.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.fdkankan.fusion.response;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.fdkankan.fusion.entity.Model;
  4. import lombok.Data;
  5. @Data
  6. public class SceneVo extends Model {
  7. private Long id;
  8. private Integer buildObjStatus;
  9. private String createTime;
  10. private String name;
  11. private String num;
  12. private Integer payStatus;
  13. private String sceneName;
  14. private String snCode;
  15. private Integer status;
  16. private String thumb;
  17. private String title;
  18. private Integer viewCount;
  19. private Boolean isLaser;
  20. private Integer type; // 0 四维看看,1看见场景,2 深时场景,3 三维模型
  21. private String phone;
  22. private Boolean bind = true;
  23. private String deptId;
  24. private String deptName;
  25. /**
  26. * " Scene_Location_Slam = 0, //slam\n" +
  27. * " Scene_Location_SFM 1 , //sfm\n" +
  28. * " Scene_Location_SFMAI 2, //SFM + AI\n" +
  29. * " Scene_Location_MutiFloor 3 , //多楼层\n" +
  30. * " Scene_Location_PointCloud 4, //点云\n" +
  31. * " Scene_Location_SLAMPoint 5, //slam实时拍\n" +
  32. * " Scene_Location_SLAMPointAndSFMAI 6 //slam实时拍+站点\n" +
  33. */
  34. private Integer location;
  35. private Boolean inFusion = false;
  36. /**
  37. * 模型方向(只有激光场景才有)
  38. */
  39. private String orientation;
  40. /**
  41. * laser推送经纬度信息
  42. */
  43. private String rtkLocation;
  44. }