UiGuide.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.xy.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import lombok.experimental.Accessors;
  7. import java.io.Serializable;
  8. import java.time.LocalDateTime;
  9. /**
  10. * <p>
  11. * 界面-引导提示配置表
  12. * </p>
  13. *
  14. * @author lijin
  15. * @since 2023-01-05
  16. */
  17. @Data
  18. @Accessors(chain = true)
  19. @EqualsAndHashCode(callSuper = false)
  20. public class UiGuide implements Serializable {
  21. private static final long serialVersionUID = 1L;
  22. /**
  23. * id
  24. */
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Integer id;
  27. /**
  28. * 引导编码
  29. */
  30. private String guideId;
  31. /**
  32. * 引导标题
  33. */
  34. private String guideTitle;
  35. /**
  36. * 引导类型
  37. */
  38. private Integer guideType;
  39. /**
  40. * 启用状态
  41. */
  42. private Integer guideState;
  43. /**
  44. * 引导内容
  45. */
  46. private String guideContent;
  47. /**
  48. * 引导类容内型
  49. */
  50. private Integer guideContentType;
  51. /**
  52. * 显示方式
  53. */
  54. private Integer viewType;
  55. /**
  56. * 链接
  57. */
  58. private String guideLink;
  59. /**
  60. * 更新时间
  61. */
  62. private LocalDateTime updateTime;
  63. /**
  64. * 创建时间
  65. */
  66. private LocalDateTime createTime;
  67. }