|
@@ -1,172 +1,207 @@
|
|
|
package com.fdkankan.external.entity;
|
|
|
|
|
|
-import com.mybatisflex.annotation.Id;
|
|
|
-import com.mybatisflex.annotation.KeyType;
|
|
|
-import com.mybatisflex.annotation.Table;
|
|
|
+import com.baomidou.mybatisplus.annotation.*;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
-import java.math.BigInteger;
|
|
|
-import java.sql.Timestamp;
|
|
|
-import lombok.AllArgsConstructor;
|
|
|
-import lombok.Builder;
|
|
|
-import lombok.Data;
|
|
|
-import lombok.NoArgsConstructor;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
- * 实体类。
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
*
|
|
|
- * @author dsx
|
|
|
- * @since 2023-12-12
|
|
|
+ * @author
|
|
|
+ * @since 2022-01-20
|
|
|
*/
|
|
|
-@Data
|
|
|
-@Builder
|
|
|
-@NoArgsConstructor
|
|
|
-@AllArgsConstructor
|
|
|
-@Table(value = "t_scene_edit_info")
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("t_scene_edit_info")
|
|
|
public class SceneEditInfo implements Serializable {
|
|
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
/**
|
|
|
* 主键
|
|
|
*/
|
|
|
- @Id(keyType = KeyType.Auto)
|
|
|
- private BigInteger id;
|
|
|
+ @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-是)
|
|
|
+ * 用户是否上传户型图
|
|
|
*/
|
|
|
- private Integer floorPlanUser;
|
|
|
+ @TableField("floor_plan_user")
|
|
|
+ private Byte floorPlanUser;
|
|
|
+
|
|
|
+// /**
|
|
|
+// *
|
|
|
+// */
|
|
|
+// @TableField("cad_info")
|
|
|
+// private String cadInfo;
|
|
|
|
|
|
/**
|
|
|
* 是否有热点数据(0-否,1-是)
|
|
|
*/
|
|
|
- private Integer tags;
|
|
|
+ @TableField("tags")
|
|
|
+ private Byte tags;
|
|
|
|
|
|
/**
|
|
|
* 版本
|
|
|
*/
|
|
|
+ @TableField("version")
|
|
|
private Integer version;
|
|
|
|
|
|
/**
|
|
|
* 图片版本
|
|
|
*/
|
|
|
+ @TableField("img_version")
|
|
|
private Integer imgVersion;
|
|
|
|
|
|
/**
|
|
|
* 场景关联版本
|
|
|
*/
|
|
|
+ @TableField("link_version")
|
|
|
private Integer linkVersion;
|
|
|
|
|
|
/**
|
|
|
* 是否上传模型
|
|
|
*/
|
|
|
- private Integer isUploadObj;
|
|
|
+ @TableField("is_upload_obj")
|
|
|
+ private Byte 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;
|
|
|
|
|
|
/**
|
|
|
* 是否需要处理球幕视频
|
|
|
*/
|
|
|
- private Integer buildVideoStatus;
|
|
|
+ @TableField("build_video_status")
|
|
|
+ private Byte 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;
|
|
|
|
|
|
/**
|
|
|
* 创建时间
|
|
|
*/
|
|
|
- private Timestamp createTime;
|
|
|
+ @TableField("create_time")
|
|
|
+ private Date createTime;
|
|
|
|
|
|
/**
|
|
|
* 修改时间
|
|
|
*/
|
|
|
- private Timestamp updateTime;
|
|
|
+ @TableField("update_time")
|
|
|
+ private Date updateTime;
|
|
|
|
|
|
/**
|
|
|
- * A-有效,I-无效
|
|
|
+ * 记录的状态,A: 生效,I: 禁用
|
|
|
*/
|
|
|
+ @TableField("rec_status")
|
|
|
+ @TableLogic(value = "A", delval = "I")
|
|
|
private String recStatus;
|
|
|
|
|
|
+
|
|
|
}
|