123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- 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-23
- */
- @Getter
- @Setter
- @TableName("t_scene")
- public class Scene implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 场景名称
- */
- @TableField("scene_name")
- private String sceneName;
- /**
- * 场景描述
- */
- @TableField("scene_dec")
- private String sceneDec;
- /**
- * 场景的链接地址
- */
- @TableField("web_site")
- private String webSite;
- /**
- * 场景缩略图
- */
- @TableField("thumb")
- private String thumb;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 0表示未建好,1表示建好,-1表示出错,-2表示不要在官网上显示
- */
- @TableField("status")
- private Integer status;
- /**
- * 原始的大场景数据(七牛)
- */
- @TableField("data_source")
- private String dataSource;
- /**
- * 用户表t_user的id
- */
- @TableField("user_id")
- private Long userId;
- /**
- * 0表示未付款,1表示付款了,-1表示欠费
- */
- @TableField("pay_status")
- private Integer payStatus;
- /**
- * 相机主表t_camera的id
- */
- @TableField("camera_id")
- private Long cameraId;
- /**
- * 手机id
- */
- @TableField("phone_id")
- private String phoneId;
- /**
- * 大场景序号
- */
- @TableField("num")
- private String num;
- /**
- * 大场景的密钥
- */
- @TableField("scene_key")
- private String sceneKey;
- /**
- * 0表示其他,1表示文博,2表示地产,3表示电商,4表示餐饮,5表示家居
- */
- @TableField("scene_type")
- private Integer sceneType;
- /**
- * 1表示推荐,0表示正常
- */
- @TableField("recommend")
- private Integer recommend;
- /**
- * 浏览次数
- */
- @TableField("view_count")
- private Integer viewCount;
- /**
- * 版本
- */
- @TableField("version")
- private Integer version;
- /**
- * 表示缩略图是否存在
- */
- @TableField("thumb_status")
- private Integer thumbStatus;
- /**
- * 0表示默认,1表示自己上传
- */
- @TableField("floor_logo")
- private String floorLogo;
- /**
- * 标记大小
- */
- @TableField("floor_logo_size")
- private Integer floorLogoSize;
- /**
- * 要上传的热点的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;
- /**
- * 记录的状态,A: 生效,I: 禁用
- */
- @TableField("rec_status")
- private String recStatus;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * 普通录屏文件地址
- */
- @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;
- }
|