|
@@ -0,0 +1,84 @@
|
|
|
|
+package com.fdkankan.manage.entity;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
|
|
+import lombok.Getter;
|
|
|
|
+import lombok.Setter;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * <p>
|
|
|
|
+ *
|
|
|
|
+ * </p>
|
|
|
|
+ *
|
|
|
|
+ * @author
|
|
|
|
+ * @since 2023-07-14
|
|
|
|
+ */
|
|
|
|
+@Getter
|
|
|
|
+@Setter
|
|
|
|
+@TableName("t_modeling_config")
|
|
|
|
+public class ModelingConfig implements Serializable {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
|
+ private Integer id;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 相机类型
|
|
|
|
+ */
|
|
|
|
+ @TableField("camera_name")
|
|
|
|
+ private String cameraName;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 1看看,9看见,10深时,11深光
|
|
|
|
+ */
|
|
|
|
+ @TableField("camera_type")
|
|
|
|
+ private Integer cameraType;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 1看看,3看见,4深时,5深光
|
|
|
|
+ */
|
|
|
|
+ @TableField("scene_source")
|
|
|
|
+ private Integer sceneSource;
|
|
|
|
+
|
|
|
|
+ @TableField("modelkind")
|
|
|
|
+ private String modelkind;
|
|
|
|
+
|
|
|
|
+ @TableField("scene_resolution")
|
|
|
|
+ private String sceneResolution;
|
|
|
|
+
|
|
|
|
+ @TableField("scene_from")
|
|
|
|
+ private String sceneFrom;
|
|
|
|
+
|
|
|
|
+ @TableField("scene_kind")
|
|
|
|
+ private String sceneKind;
|
|
|
|
+
|
|
|
|
+ @TableField("split_type")
|
|
|
|
+ private String splitType;
|
|
|
|
+
|
|
|
|
+ @TableField("skybox_type")
|
|
|
|
+ private String skyboxType;
|
|
|
|
+
|
|
|
|
+ @TableField("app_obj_split_type")
|
|
|
|
+ private String appObjSplitType;
|
|
|
|
+
|
|
|
|
+ @TableField("pc_obj_split_type")
|
|
|
|
+ private String pcObjSplitType;
|
|
|
|
+
|
|
|
|
+ @TableField("rec_status")
|
|
|
|
+ @TableLogic(value = "A",delval = "I")
|
|
|
|
+ private String recStatus;
|
|
|
|
+
|
|
|
|
+ @TableField("create_time")
|
|
|
|
+ private Date createTime;
|
|
|
|
+
|
|
|
|
+ @TableField("update_time")
|
|
|
|
+ private Date updateTime;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|