QzTaskReply.java 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.bofeng.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. @Data
  7. public class QzTaskReply implements Serializable {
  8. /**
  9. * 回复ID
  10. */
  11. private Long replyId;
  12. /**
  13. * 求助ID
  14. */
  15. private Long taskId;
  16. /**
  17. * 回复用户ID
  18. */
  19. private Long userId;
  20. /**
  21. * 回复用户ID
  22. */
  23. private String nikeName;
  24. /**
  25. * 回复内容
  26. */
  27. private String replyContent;
  28. /**
  29. * 新增人
  30. */
  31. private Long userCreate;
  32. /**
  33. * 新增时间
  34. */
  35. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  36. private Date timeCreate;
  37. /**
  38. * 修改人
  39. */
  40. private Long userUpdate;
  41. /**
  42. * 修改时间
  43. */
  44. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  45. private Date timeUpdate;
  46. private String taskTitle;
  47. private Integer taskStatus;
  48. private String nickName;
  49. private String remark;
  50. private static final long serialVersionUID = 1L;
  51. }