ScenePlusExt.java 3.7 KB

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