Digital Office Automation System Backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ZsMessages.java 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.ruoyi.system.domain;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. import java.util.Date;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. /**
  8. * 站点留言对象 zs_messages
  9. *
  10. * @author 王强
  11. * @date 2025-05-06
  12. */
  13. @Data
  14. @EqualsAndHashCode(callSuper = true)
  15. @TableName("zs_messages")
  16. public class ZsMessages extends BaseEntity {
  17. private static final long serialVersionUID=1L;
  18. /**
  19. * 主键ID
  20. */
  21. @TableId(value = "id")
  22. private Long id;
  23. /**
  24. * 网站ID
  25. */
  26. private Long websiteId;
  27. /**
  28. * 留言者姓名
  29. */
  30. private String username;
  31. /**
  32. * 留言者邮箱
  33. */
  34. private String email;
  35. /**
  36. * 留言内容
  37. */
  38. private String content;
  39. /**
  40. * 用户IP
  41. */
  42. private String ipAddress;
  43. /**
  44. * 留言时间
  45. */
  46. private Date createdAt;
  47. /**
  48. * 审核状态
  49. */
  50. private Integer status;
  51. /**
  52. * 管理员回复内容
  53. */
  54. private String adminReply;
  55. /**
  56. * 管理员回复时间
  57. */
  58. private Date adminReplyAt;
  59. }