ScenePlusExt.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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.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-06-29
  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("ecs")
  60. private String ecs;
  61. /**
  62. * 点位数量
  63. */
  64. @TableField("shoot_count")
  65. private Integer shootCount;
  66. /**
  67. * 浏览次数
  68. */
  69. @TableField("view_count")
  70. private Integer viewCount;
  71. /**
  72. * gps定位
  73. */
  74. @TableField("gps")
  75. private String gps;
  76. /**
  77. * 算法类型(slam、sfm)
  78. */
  79. @TableField("algorithm")
  80. private String algorithm;
  81. /**
  82. * 固件版本
  83. */
  84. @TableField("firmware_version")
  85. private String firmwareVersion;
  86. /**
  87. * 算法类型(V2,V3)
  88. */
  89. @TableField("build_type")
  90. private String buildType;
  91. /**
  92. * 分辨率(2k,4k)
  93. */
  94. @TableField("scene_resolution")
  95. private String sceneResolution;
  96. /**
  97. * 场景来源,lite:双目lite相机,pro:八目相机,minion:双面转台相机,laser:激光相机,virtual:虚拟场景,sketch:图片建模场景
  98. */
  99. @TableField("scene_from")
  100. private String sceneFrom;
  101. /**
  102. * 切图方式(tiles:瓦片图,face:切片图,pan:全景图 ,local:本地切片,cube:立体图)
  103. */
  104. @TableField("scene_kind")
  105. private String sceneKind;
  106. /**
  107. * 算法模型类型(dam,3dtiles)
  108. */
  109. @TableField("model_kind")
  110. private String modelKind;
  111. /**
  112. * 点位视频
  113. */
  114. @TableField("videos")
  115. private String videos;
  116. /**
  117. * 计算耗时
  118. */
  119. @TableField("compute_time")
  120. private Long computeTime;
  121. /**
  122. * 创建时间
  123. */
  124. @TableField("create_time")
  125. private Date createTime;
  126. /**
  127. * 更新时间
  128. */
  129. @TableField("update_time")
  130. private Date updateTime;
  131. @TableField("rec_status")
  132. @TableLogic(value = "A", delval = "I")
  133. private String recStatus;
  134. }