SceneEditInfo.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. package com.fdkankan.scene.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * <p>
  9. *
  10. * </p>
  11. *
  12. * @author
  13. * @since 2022-01-20
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_scene_edit_info")
  18. public class SceneEditInfo implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 主键
  22. */
  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. /**
  30. * 地面logo名称
  31. */
  32. @TableField("floor_logo")
  33. private String floorLogo;
  34. /**
  35. * 地面logo大小
  36. */
  37. @TableField("floor_logo_size")
  38. private Integer floorLogoSize;
  39. /**
  40. * 地面logo文件名称
  41. */
  42. @TableField("floor_logo_file")
  43. private String floorLogoFile;
  44. /**
  45. * 背景音乐名称
  46. */
  47. @TableField("music")
  48. private String music;
  49. /**
  50. * 背景音乐文件名称
  51. */
  52. @TableField("music_file")
  53. private String musicFile;
  54. /**
  55. * 浏览密码
  56. */
  57. @TableField("scene_password")
  58. private String scenePassword;
  59. /**
  60. * 场景标题
  61. */
  62. @TableField("title")
  63. private String title;
  64. /**
  65. * 场景描述
  66. */
  67. @TableField("description")
  68. private String description;
  69. /**
  70. * 用户是否上传户型图
  71. */
  72. @TableField("floor_plan_user")
  73. private Byte floorPlanUser;
  74. // /**
  75. // *
  76. // */
  77. // @TableField("cad_info")
  78. // private String cadInfo;
  79. /**
  80. * 是否有热点数据(0-否,1-是)
  81. */
  82. @TableField("tags")
  83. private Byte tags;
  84. /**
  85. * 版本
  86. */
  87. @TableField("version")
  88. private Integer version;
  89. /**
  90. * 图片版本
  91. */
  92. @TableField("img_version")
  93. private Integer imgVersion;
  94. /**
  95. * 场景关联版本
  96. */
  97. @TableField("link_version")
  98. private Integer linkVersion;
  99. /**
  100. * 是否上传模型
  101. */
  102. @TableField("is_upload_obj")
  103. private Byte isUploadObj;
  104. /**
  105. * 重新建模的版本
  106. */
  107. @TableField("floor_edit_ver")
  108. private Integer floorEditVer;
  109. /**
  110. * 正式发布重新建模的版本
  111. */
  112. @TableField("floor_publish_ver")
  113. private Integer floorPublishVer;
  114. /**
  115. * 空间视频数据
  116. */
  117. @TableField("box_videos")
  118. private String boxVideos;
  119. /**
  120. * 空间贴图数据
  121. */
  122. @TableField("box_photos")
  123. private String boxPhotos;
  124. /**
  125. * 是否需要处理球幕视频
  126. */
  127. @TableField("build_video_status")
  128. private Byte buildVideoStatus;
  129. /**
  130. * 初始点信息
  131. */
  132. @TableField("entry")
  133. private String entry;
  134. /**
  135. * 加载logo名
  136. */
  137. @TableField("loading_logo")
  138. private String loadingLogo;
  139. /**
  140. * 加载logo文件名
  141. */
  142. @TableField("loading_logo_file")
  143. private String loadingLogoFile;
  144. /**
  145. * 创建时间
  146. */
  147. @TableField("create_time")
  148. private Date createTime;
  149. /**
  150. * 修改时间
  151. */
  152. @TableField("update_time")
  153. private Date updateTime;
  154. /**
  155. * 记录的状态,A: 生效,I: 禁用
  156. */
  157. @TableField("rec_status")
  158. @TableLogic(value = "A", delval = "I")
  159. private String recStatus;
  160. }