123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- package com.fdkankan.scene.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.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-03-07
- */
- @Getter
- @Setter
- @TableName("t_scene_edit_info_ext")
- public class SceneEditInfoExt {
- 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;
- @TableField("edit_info_id")
- private Long editInfoId;
- @TableField("floor_plan_angle")
- private Float floorPlanAngle;
- @TableField("floor_plan_compass")
- private Float floorPlanCompass;
- /**
- * 大场景序号(随心装场景码) 原pro_edit表中的字段
- */
- @TableField("vr_num")
- private String vrNum;
- /**
- * 是否有保存导览(0-否,1-是)
- */
- @TableField("tours")
- private Integer tours;
- /**
- * 是否有马赛克
- */
- @TableField("mosaic")
- private Integer mosaic;
- /**
- * 水印文件名
- */
- @TableField("water_mark")
- private String waterMark;
- /**
- * 是否有场景关联(0-否,1-是)
- */
- @TableField("links")
- private Integer links;
- /**
- * 是否有滤镜(0-否,1-是)
- */
- @TableField("filters")
- private Integer filters;
- /**
- * 是否有监控摄像头(0-否,1-是)
- */
- @TableField("surveillances")
- private Integer surveillances;
- /**
- * 二维码logo路径(oss相对路径)
- */
- @TableField("share_logo_img")
- private String shareLogoImg;
- /**
- * 是否有指示牌(0-否,1-是)
- */
- @TableField("billboards")
- private Integer billboards;
- /**
- * 分享配置信息
- */
- @TableField("sns_info")
- private String snsInfo;
- /**
- * 创建时间
- */
- @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;
- }
|