ScenePlusExt.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. package com.fdkankan.fusion.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. /**
  8. * <p>
  9. *
  10. * </p>
  11. *
  12. * @author
  13. * @since 2023-12-28
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_scene_plus_ext")
  18. public class ScenePlusExt implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Long id;
  22. /**
  23. * t_scene_plus主键
  24. */
  25. @TableField("plus_id")
  26. private Long plusId;
  27. /**
  28. * 场景数据目录
  29. */
  30. @TableField("data_source")
  31. private String dataSource;
  32. /**
  33. * 场景链接
  34. */
  35. @TableField("web_site")
  36. private String webSite;
  37. /**
  38. * 缩略图链接
  39. */
  40. @TableField("thumb")
  41. private String thumb;
  42. /**
  43. * 方案:1-双目,2-转台,3-六目,4-八目,10-获取4k图,11-获取2k,12-获取1k
  44. */
  45. @TableField("scene_scheme")
  46. private Integer sceneScheme;
  47. /**
  48. * 使用用量
  49. */
  50. @TableField("space")
  51. private Long space;
  52. /**
  53. * 原始文件容量
  54. */
  55. @TableField("orig_space")
  56. private Long origSpace;
  57. /**
  58. * 云服务器类型
  59. */
  60. @TableField("ecs")
  61. private String ecs;
  62. /**
  63. * 点位数量
  64. */
  65. @TableField("shoot_count")
  66. private Integer shootCount;
  67. /**
  68. * 浏览次数
  69. */
  70. @TableField("view_count")
  71. private Integer viewCount;
  72. /**
  73. * gps定位
  74. */
  75. @TableField("gps")
  76. private String gps;
  77. /**
  78. * 算法类型(slam、sfm)
  79. */
  80. @TableField("algorithm")
  81. private String algorithm;
  82. /**
  83. * 固件版本
  84. */
  85. @TableField("firmware_version")
  86. private String firmwareVersion;
  87. /**
  88. * 算法类型(V2,V3)
  89. */
  90. @TableField("build_type")
  91. private String buildType;
  92. /**
  93. * 分辨率(2k,4k)
  94. */
  95. @TableField("scene_resolution")
  96. private String sceneResolution;
  97. /**
  98. * 场景来源,lite:双目lite相机,pro:八目相机,minion:双面转台相机,laser:激光相机,virtual:虚拟场景,sketch:图片建模场景
  99. */
  100. @TableField("scene_from")
  101. private String sceneFrom;
  102. /**
  103. * 切图方式(tiles:瓦片图,face:切片图,pano:全景图 ,local:本地切片,cube:立体图)
  104. */
  105. @TableField("scene_kind")
  106. private String sceneKind;
  107. /**
  108. * 算法生成模型类型(dam,3dtiles)
  109. */
  110. @TableField("model_kind")
  111. private String modelKind;
  112. /**
  113. * 点位视频
  114. */
  115. @TableField("videos")
  116. private String videos;
  117. /**
  118. * oss桶名
  119. */
  120. @TableField("yun_file_bucket")
  121. private String yunFileBucket;
  122. /**
  123. * 算法计算完成时间
  124. */
  125. @TableField("algorithm_time")
  126. private Date algorithmTime;
  127. /**
  128. * 计算耗时
  129. */
  130. @TableField("compute_time")
  131. private Long computeTime;
  132. /**
  133. * 拍摄模式:3(SFM架站式-看看场景),
  134. 4(SFM架站式-看见/深时/深光场景),
  135. 5(SLAM移动定位模式) ,
  136. 6(SLAM移动定位模式-有点位)
  137. */
  138. @TableField("location")
  139. private Integer location;
  140. /**
  141. * 创建时间
  142. */
  143. @TableField("create_time")
  144. private Date createTime;
  145. /**
  146. * 更新时间
  147. */
  148. @TableField("update_time")
  149. private Date updateTime;
  150. /**
  151. * A-有效,I-无效
  152. */
  153. @TableField("rec_status")
  154. @TableLogic(value = "A",delval = "I")
  155. private String recStatus;
  156. @TableField("is_obj")
  157. private Integer isObj;
  158. /**
  159. * 模型方向(只有激光场景才有)
  160. */
  161. @TableField("orientation")
  162. private String orientation;
  163. /**
  164. * laser推送经纬度信息
  165. */
  166. @TableField("rtk_location")
  167. private String rtkLocation;
  168. }