FusionGuidePath.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.fdkankan.fusion.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-08-16
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_fusion_guide_path")
  22. public class FusionGuidePath implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "guide_path_id", type = IdType.AUTO)
  25. private Integer guidePathId;
  26. @TableField("guide_id")
  27. private Integer guideId;
  28. /**
  29. * 位置json
  30. */
  31. @TableField("target")
  32. private String target;
  33. /**
  34. * 位置json
  35. */
  36. @TableField("position")
  37. private String position;
  38. /**
  39. * 封面图
  40. */
  41. @TableField("cover")
  42. private String cover;
  43. /**
  44. * 持续时间 秒
  45. */
  46. @TableField("time")
  47. private Integer time;
  48. /**
  49. * 速度 m/s
  50. */
  51. @TableField("speed")
  52. private Double speed;
  53. /**
  54. * 排序
  55. */
  56. @TableField("sort")
  57. private Integer sort;
  58. @TableField("tb_status")
  59. @TableLogic
  60. private Integer tbStatus;
  61. @TableField("create_time")
  62. private String createTime;
  63. @TableField("update_time")
  64. private String updateTime;
  65. }