ImReplyListVo.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package jnpf.message.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * 消息会话列表
  7. *
  8. * @author JNPF开发平台组
  9. * @version V3.1.0
  10. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  11. * @date 2021-05-29
  12. */
  13. @Data
  14. public class ImReplyListVo {
  15. /**
  16. * id
  17. */
  18. @Schema(description = "id")
  19. private String id;
  20. /**
  21. * 名称
  22. */
  23. @Schema(description = "名称")
  24. private String realName;
  25. /**
  26. * 头像
  27. */
  28. @Schema(description = "头像")
  29. private String headIcon;
  30. /**
  31. * 最新消息
  32. */
  33. @Schema(description = "最新消息")
  34. private String latestMessage;
  35. /**
  36. * 最新时间
  37. */
  38. @Schema(description = "最新时间")
  39. private Long latestDate;
  40. /**
  41. * 未读消息
  42. */
  43. @Schema(description = "未读消息")
  44. private Integer unreadMessage;
  45. /**
  46. * 消息类型
  47. */
  48. @Schema(description = "消息类型")
  49. private String messageType;
  50. /**
  51. * Account
  52. */
  53. @Schema(description = "Account")
  54. private String account;
  55. }