fuliqi
2024-06-25 3458825b9d5a4d37ba76e3c16f5d977b8f84b027
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ycl.jxkg.domain.vo.student.user;
 
import lombok.Data;
 
@Data
public class MessageResponseVO {
 
    private Integer id;
 
    private String title;
 
    private Integer messageId;
 
    private String content;
 
    private Boolean readed;
 
    private String  createTime;
 
    private String sendUserName;
 
}