MessageDTO.java 962 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. * /**
  3. * Copyright (c) 2018 业主系统 All rights reserved.
  4. * <p>
  5. * https://www.kioor.com
  6. * <p>
  7. * 版权所有,侵权必究!
  8. */
  9. package com.kioor.messageboard.dto;
  10. import io.swagger.v3.oas.annotations.media.Schema;
  11. import lombok.Data;
  12. import java.util.Date;
  13. /**
  14. * 留言
  15. *
  16. * @author Mark sunlightcs@gmail.com
  17. */
  18. @Data
  19. @Schema(description = "留言")
  20. public class MessageDTO {
  21. @Schema(description = "id")
  22. private Long id;
  23. @Schema(description = "小区")
  24. private Long housingEstateId;
  25. @Schema(description = "论坛")
  26. private Long messageBoardId;
  27. @Schema(description = "留言内容")
  28. private String content;
  29. @Schema(description = "留言人")
  30. private Long editUser;
  31. @Schema(description = "留言时间")
  32. private Date editTime;
  33. @Schema(description = "是否显示房号")
  34. private Integer showRoomFlag;
  35. @Schema(description = "留言人房号")
  36. private String roomName;
  37. }