123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- package com.fdkankan.modeling.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 场景表
- * </p>
- *
- * @author dengsixing
- * @since 2021-12-30
- */
- @Getter
- @Setter
- @TableName("t_scene_ext")
- public class SceneExt implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 外键id
- */
- @TableField("scene_id")
- private Long sceneId;
- /**
- * 要上传的热点的id集合,用逗号隔开
- */
- @TableField("hots_ids")
- private String hotsIds;
- /**
- * 表示初始点信息
- */
- @TableField("entry")
- private String entry;
- /**
- * 拍摄数量
- */
- @TableField("shoot_count")
- private Integer shootCount;
- /**
- * 风格
- */
- @TableField("style")
- private Integer style;
- /**
- * 要gps定位
- */
- @TableField("gps")
- private String gps;
- /**
- * 方案:1是双目,2是转台,3是六目,4是八目
- */
- @TableField("scene_scheme")
- private Integer sceneScheme;
- /**
- * 背景音乐名称
- */
- @TableField("bg_music")
- private String bgMusic;
- /**
- * 普通录屏文件地址
- */
- @TableField("screencap_voice_src")
- private String screencapVoiceSrc;
- /**
- * 旧版录屏数据地址
- */
- @TableField("screencap_music")
- private String screencapMusic;
- /**
- * 录屏文件个数
- */
- @TableField("screencap_len")
- private Integer screencapLen;
- /**
- * 录音文件地址
- */
- @TableField("screencap_voice_sound")
- private String screencapVoiceSound;
- /**
- * 选择的类型,sound为screencapVoiceSound,file为screencapVoiceSrc
- */
- @TableField("screencap_voice_type")
- private String screencapVoiceType;
- /**
- * 录屏文件地址
- */
- @TableField("play_data")
- private String playData;
- /**
- * 算法类型
- */
- @TableField("algorithm")
- private String algorithm;
- /**
- * oss服务商
- */
- @TableField("oss")
- private String oss;
- /**
- * 重新建模的版本
- */
- @TableField("floor_edit_ver")
- private Integer floorEditVer;
- /**
- * 正式发布重新建模的版本
- */
- @TableField("floor_publish_ver")
- private Integer floorPublishVer;
- /**
- * 使用容量
- */
- @TableField("space")
- private Long space;
- /**
- * 录屏图片存放文件
- */
- @TableField("screencap_thumb")
- private String screencapThumb;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * 0-有效,1-删除
- */
- @TableField("tb_status")
- private Integer tbStatus;
- }
|