123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- package com.fdkankan.contro.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;
- /**
- * mosaics数据
- */
- @TableField("mosaics")
- private String mosaics;
- /**
- * 水印文件名
- */
- @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;
- /**
- * mosaics数据
- */
- @TableField("share_logo_img")
- private String shareLogoImg;
- /**
- * 是否有指示牌
- */
- @TableField("billboards")
- private Integer billboards;
- /**
- * 模型裁剪
- */
- @TableField("cut_model")
- private Integer cutModel;
- /**
- * 入厂设置
- */
- @TableField("started")
- private String started;
- /**
- * 是否有空间绘制
- */
- @TableField("scene_draw")
- private Integer sceneDraw;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * A正常,I删除
- */
- @TableField("rec_status")
- @TableLogic("A")
- private String recStatus;
- }
|