FeedbackQueryParam.java 798 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.kym.entity.admin.queryParams;
  2. import com.kym.entity.common.PageParams;
  3. import lombok.Data;
  4. import java.time.LocalDateTime;
  5. @Data
  6. public class FeedbackQueryParam extends PageParams {
  7. /**
  8. * 反馈标题
  9. */
  10. private String title;
  11. /**
  12. * 纠错类型
  13. */
  14. private Integer type;
  15. /**
  16. * 状态
  17. */
  18. private Integer status;
  19. /**
  20. * 详情描述
  21. */
  22. private String content;
  23. /**
  24. * 提交时间
  25. */
  26. private LocalDateTime submitTime;
  27. /**
  28. * 反馈人
  29. */
  30. private Long submitUserId;
  31. /**
  32. * 回复内容
  33. */
  34. private String replyContent;
  35. /**
  36. * 回复时间
  37. */
  38. private LocalDateTime replyTime;
  39. /**
  40. * 回复人
  41. */
  42. private Long replyUserId;
  43. }