xiangpei
2024-06-26 12aa6d1bbe7b386f81731d797942b6a1ac7e3a2f
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;
 
}