1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package org.springblade.jfpt.chatrecords.vo;
|
| import lombok.Data;
| import org.springblade.jfpt.chatrecords.entity.ChatRecords;
|
| import java.io.Serializable;
|
| /**
| * @author zhongrj
| * @time 2021-06-19
| * @desc 聊天列表vo
| */
| @Data
| public class ChatRecordsVo extends ChatRecords implements Serializable {
| /**
| * 接收或者发送的昵称
| */
| private String recipientNickName;
|
| /**
| * 接收或者发送的姓名
| */
| private String recipientName;
|
| /**
| * 接收或者发送的头像 url
| */
| private String avatar;
|
| }
|
|