SceneEditInfoExt.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. package com.fdkankan.scene.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.util.Date;
  8. import lombok.Getter;
  9. import lombok.Setter;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author
  16. * @since 2022-03-07
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("t_scene_edit_info_ext")
  21. public class SceneEditInfoExt {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. @TableField("scene_pro_id")
  26. private Long sceneProId;
  27. @TableField("scene_plus_id")
  28. private Long scenePlusId;
  29. @TableField("edit_info_id")
  30. private Long editInfoId;
  31. @TableField("floor_plan_angle")
  32. private Float floorPlanAngle;
  33. @TableField("floor_plan_compass")
  34. private Float floorPlanCompass;
  35. /**
  36. * 大场景序号(随心装场景码) 原pro_edit表中的字段
  37. */
  38. @TableField("vr_num")
  39. private String vrNum;
  40. /**
  41. * 是否有保存导览(0-否,1-是)
  42. */
  43. @TableField("tours")
  44. private Integer tours;
  45. /**
  46. * 是否有马赛克
  47. */
  48. @TableField("mosaic")
  49. private Integer mosaic;
  50. /**
  51. * 水印文件名
  52. */
  53. @TableField("water_mark")
  54. private String waterMark;
  55. /**
  56. * 是否有场景关联(0-否,1-是)
  57. */
  58. @TableField("links")
  59. private Integer links;
  60. /**
  61. * 是否有滤镜(0-否,1-是)
  62. */
  63. @TableField("filters")
  64. private Integer filters;
  65. /**
  66. * 是否有监控摄像头(0-否,1-是)
  67. */
  68. @TableField("surveillances")
  69. private Integer surveillances;
  70. /**
  71. * 二维码logo路径(oss相对路径)
  72. */
  73. @TableField("share_logo_img")
  74. private String shareLogoImg;
  75. /**
  76. * 是否有指示牌(0-否,1-是)
  77. */
  78. @TableField("billboards")
  79. private Integer billboards;
  80. /**
  81. * 分享配置信息
  82. */
  83. @TableField("sns_info")
  84. private String snsInfo;
  85. /**
  86. * 创建时间
  87. */
  88. @TableField("create_time")
  89. private Date createTime;
  90. /**
  91. * 更新时间
  92. */
  93. @TableField("update_time")
  94. private Date updateTime;
  95. /**
  96. * 记录的状态,A: 生效,I: 禁用
  97. */
  98. @TableField("rec_status")
  99. @TableLogic(value = "A", delval = "I")
  100. private String recStatus;
  101. }