123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- package com.fdkankan.scene.vo;
- import lombok.Data;
- import java.util.Date;
- @Data
- public class SceneProEditVO {
- private Long id;
- /**
- * pro场景id
- */
- private Long proId;
- /**
- * 大场景的密钥
- */
- private String sceneKey;
- /**
- * 展示页面密码,0不需要,1需要
- */
- private Integer needKey;
- /**
- * 版本
- */
- private Integer version;
- /**
- * 表示缩略图是否存在
- */
- private Integer thumbStatus;
- /**
- * 地面点位标志
- */
- private String markerLogo;
- /**
- * 0表示默认,1表示自己上传
- */
- private String floorLogo;
- /**
- * 标记大小
- */
- private Integer floorLogoSize;
- /**
- * 要上传的热点的id集合,用逗号隔开
- */
- private String hotsIds;
- /**
- * 表示初始点信息
- */
- private String entry;
- /**
- * 背景音乐名称
- */
- private String bgMusic;
- /**
- * 记录的状态,A: 生效,I: 禁用
- */
- private String recStatus;
- /**
- * 普通录屏文件地址
- */
- private String screencapVoiceSrc;
- /**
- * 录音文件地址
- */
- private String screencapVoiceSound;
- /**
- * 同步录音地址
- */
- private String screencapVoiceSoundsync;
- /**
- * 选择的类型,sound为screencapVoiceSound,file为screencapVoiceSrc,soundsync为screencap_voice_soundsync
- */
- private String screencapVoiceType;
- /**
- * 录屏文件地址
- */
- private String playData;
- /**
- * 重新建模的版本
- */
- private Integer floorEditVer;
- /**
- * 正式发布重新建模的版本
- */
- private Integer floorPublishVer;
- /**
- * 录屏图片存放文件
- */
- private String screencapThumb;
- /**
- * 分享的logo和生成二维码的logo
- */
- private String shareLogo;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新时间
- */
- private Date updateTime;
- private Integer mapVisi;
- /**
- * 自动导览
- */
- private Integer tourVisi;
- /**
- * vr模式
- */
- private Integer vrVisi;
- /**
- * 展示页面是否显示标尺
- */
- private Integer rulerVisi;
- /**
- * 展示页面cad图在平面图是否显示
- */
- private Integer cadImgVisi;
- /**
- * cad平面图
- */
- private String floorPlanPng;
- /**
- * cad平面图参数
- */
- private String cadInfo;
- private Integer panoVisi;
- private Integer m2dVisi;
- private Integer m3dVisi;
- private Integer measureVisi;
- /**
- * 肖安需求,场景于场景之间的关联
- */
- private String linkScene;
- private String overlay;
- /**
- * 是否显示底部logo,1显示,0不显示
- */
- private Boolean showLogoBottom;
- /**
- * 全景图版本号
- */
- private Integer imagesVersion;
- /**
- * 上传的背景音乐
- */
- private String bgMusicName;
- private Boolean jumpScene;
- /**
- * 旋转角度
- */
- private String floorPlanAngle;
- /**
- * 场景下载次数
- */
- private Integer downloadNum;
- /**
- * 绿幕抠图json数据
- */
- private String videosUser;
- /**
- * 大场景序号(随心装场景码)
- */
- private String vrNum;
- }
|