SceneEditInfo.java 3.7 KB

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