TravelComments.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.travel.model;
  2. import lombok.Data;
  3. import lombok.experimental.Accessors;
  4. import java.io.Serializable;
  5. /**
  6. * 游记评论
  7. */
  8. @Data
  9. @Accessors(chain = true)
  10. @SuppressWarnings("serial")
  11. public class TravelComments implements Serializable {
  12. /**
  13. * 主键自增
  14. */
  15. private String id;
  16. /**
  17. * 用户编号
  18. */
  19. private String code;
  20. /**
  21. * 评论编号
  22. */
  23. private String uuid;
  24. /**
  25. * 父级评论编号
  26. */
  27. private String parentUuid;
  28. /**
  29. * 评论时间
  30. */
  31. private String jdrq;
  32. /**
  33. * 内容
  34. */
  35. private String content;
  36. /**
  37. * 游记编号
  38. */
  39. private String travelUuid;
  40. /**
  41. * 评论用户名字
  42. */
  43. private String name;
  44. /**
  45. * 评论用户头像
  46. */
  47. private String headpir;
  48. /**
  49. * 评论用户编号
  50. */
  51. private String commCode;
  52. /**
  53. * 评论用户昵称
  54. */
  55. private String commName;
  56. /**
  57. * 评论用户头像
  58. */
  59. private String commHeadpir;
  60. }