123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.fdkankan.contro.vo;
- import lombok.Data;
- /**
- * 场景建模需要的参数
- * Created by Hb_zzZ on 2019/6/25.
- */
- @Data
- public class BuildSceneParamVO {
- /**
- * unicode码
- */
- private String unicode;
- /**
- * 相机编码
- */
- private String cameraName;
- /**
- * phoneId
- */
- private String phoneId;
- /**
- * 大场景秘钥
- */
- private String sceneKey;
- /**
- * zip文件下载地址前缀
- */
- private String prefix;
- /**
- * 文件名zip.Zip
- */
- private String fileName;
- /**
- * 大场景名称
- */
- private String sceneName;
- /**
- * 大场景描述
- */
- private String sceneDec;
- /**
- * 大场景类型
- */
- private Integer sceneType;
- /**
- * 拍摄点位数
- */
- private Integer shootCount;
- /**
- * gps
- */
- private String gps;
- /**
- * 场景缩略图
- */
- private String thumb;
- /**
- * sfm或slam
- */
- private String algorithm;
- /**
- * 重算路径
- */
- private String path;
- /**
- * 场景编码
- */
- private String num;
- }
|