fuliqi
2024-07-01 224d8c585e5b6cd13a6360404504fce5057daa69
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;
 
}