123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- package com.fdkankan.tools.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2023-02-08
- */
- @Getter
- @Setter
- @TableName("t_scene_edit_info")
- public class SceneEditInfo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- @TableField("scene_pro_id")
- private Long sceneProId;
- @TableField("scene_plus_id")
- private Long scenePlusId;
- /**
- * 地面logo名称
- */
- @TableField("floor_logo")
- private String floorLogo;
- /**
- * 地面logo大小
- */
- @TableField("floor_logo_size")
- private Integer floorLogoSize;
- /**
- * 地面logo文件名称
- */
- @TableField("floor_logo_file")
- private String floorLogoFile;
- /**
- * 背景音乐名称
- */
- @TableField("music")
- private String music;
- /**
- * 背景音乐文件名称
- */
- @TableField("music_file")
- private String musicFile;
- /**
- * 浏览密码
- */
- @TableField("scene_password")
- private String scenePassword;
- /**
- * 场景标题
- */
- @TableField("title")
- private String title;
- /**
- * 场景描述
- */
- @TableField("description")
- private String description;
- /**
- * 用户是否上传户型图(0-否,1-是)
- */
- @TableField("floor_plan_user")
- private Integer floorPlanUser;
- /**
- * 是否有热点数据(0-否,1-是)
- */
- @TableField("tags")
- private Integer tags;
- /**
- * 版本
- */
- @TableField("version")
- private Integer version;
- /**
- * 图片版本
- */
- @TableField("img_version")
- private Integer imgVersion;
- /**
- * 场景关联版本
- */
- @TableField("link_version")
- private Integer linkVersion;
- /**
- * 是否上传模型
- */
- @TableField("is_upload_obj")
- private Integer isUploadObj;
- /**
- * 重新建模的版本
- */
- @TableField("floor_edit_ver")
- private Integer floorEditVer;
- /**
- * 正式发布重新建模的版本
- */
- @TableField("floor_publish_ver")
- private Integer floorPublishVer;
- /**
- * 空间视频数据
- */
- @TableField("box_videos")
- private String boxVideos;
- /**
- * 空间贴图数据
- */
- @TableField("box_photos")
- private String boxPhotos;
- /**
- * 空间模型数据
- */
- @TableField("box_models")
- private String boxModels;
- /**
- * 是否需要处理球幕视频
- */
- @TableField("build_video_status")
- private Integer buildVideoStatus;
- /**
- * 初始点信息
- */
- @TableField("entry")
- private String entry;
- /**
- * 加载logo名
- */
- @TableField("loading_logo")
- private String loadingLogo;
- /**
- * 加载logo文件名
- */
- @TableField("loading_logo_file")
- private String loadingLogoFile;
- /**
- * 用户上传自定义平面图数据
- */
- @TableField("floor_plan_upload")
- private String floorPlanUpload;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 修改时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * A-有效,I-无效
- */
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- }
|