BuildSceneParamVO.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.fdkankan.contro.vo;
  2. import lombok.Data;
  3. /**
  4. * 场景建模需要的参数
  5. * Created by Hb_zzZ on 2019/6/25.
  6. */
  7. @Data
  8. public class BuildSceneParamVO {
  9. /**
  10. * unicode码
  11. */
  12. private String unicode;
  13. /**
  14. * 相机编码
  15. */
  16. private String cameraName;
  17. /**
  18. * phoneId
  19. */
  20. private String phoneId;
  21. /**
  22. * 大场景秘钥
  23. */
  24. private String sceneKey;
  25. /**
  26. * zip文件下载地址前缀
  27. */
  28. private String prefix;
  29. /**
  30. * 文件名zip.Zip
  31. */
  32. private String fileName;
  33. /**
  34. * 大场景名称
  35. */
  36. private String sceneName;
  37. /**
  38. * 大场景描述
  39. */
  40. private String sceneDec;
  41. /**
  42. * 大场景类型
  43. */
  44. private Integer sceneType;
  45. /**
  46. * 拍摄点位数
  47. */
  48. private Integer shootCount;
  49. /**
  50. * gps
  51. */
  52. private String gps;
  53. /**
  54. * 场景缩略图
  55. */
  56. private String thumb;
  57. /**
  58. * sfm或slam
  59. */
  60. private String algorithm;
  61. /**
  62. * 重算路径
  63. */
  64. private String path;
  65. /**
  66. * 场景编码
  67. */
  68. private String num;
  69. }