|
@@ -0,0 +1,81 @@
|
|
|
+package com.fdkankan.fusion.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 2022-08-16
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("t_fusion_guide_path")
|
|
|
+public class FusionGuidePath implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "guide_path_id", type = IdType.AUTO)
|
|
|
+ private Integer guidePathId;
|
|
|
+
|
|
|
+ @TableField("guide_id")
|
|
|
+ private Integer guideId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 位置json
|
|
|
+ */
|
|
|
+ @TableField("target")
|
|
|
+ private String target;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 位置json
|
|
|
+ */
|
|
|
+ @TableField("position")
|
|
|
+ private String position;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 封面图
|
|
|
+ */
|
|
|
+ @TableField("cover")
|
|
|
+ private String cover;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 持续时间 秒
|
|
|
+ */
|
|
|
+ @TableField("time")
|
|
|
+ private Integer time;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 速度 m/s
|
|
|
+ */
|
|
|
+ @TableField("speed")
|
|
|
+ private Double speed;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 排序
|
|
|
+ */
|
|
|
+ @TableField("sort")
|
|
|
+ private Integer sort;
|
|
|
+
|
|
|
+ @TableField("tb_status")
|
|
|
+ @TableLogic
|
|
|
+ private Integer tbStatus;
|
|
|
+
|
|
|
+ @TableField("create_time")
|
|
|
+ private String createTime;
|
|
|
+
|
|
|
+ @TableField("update_time")
|
|
|
+ private String updateTime;
|
|
|
+
|
|
|
+
|
|
|
+}
|