44323
2024-04-23 16b704d18a875d1fb63827aaa507790ba2bef5be
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
31
32
33
34
35
36
37
package com.stylefeng.guns.modular.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel
public class MessagesVO {
    @ApiModelProperty(value = "头像")
    private String headImg;
    @ApiModelProperty(value = "名称")
    private String userName;
    @ApiModelProperty(value = "时间")
    private Date time;
    @ApiModelProperty(value = "时间")
    private String insertTime;
    @ApiModelProperty(value = "是否读取0否1是")
    private Integer isRead;
 
    @ApiModelProperty(value = "如果是评论消息 就展示评论内容 如果是点赞动态就展示动态标题 如果是点赞评论就展示评论内容")
    private String content;
    @ApiModelProperty(value = "动态标题")
    private String title;
    @ApiModelProperty(value = "主键id")
    private Integer id;
    @ApiModelProperty(value = "类型 消息类型1系统通知 2点赞 3评论")
    private Integer type;
    @ApiModelProperty(value = "动态id")
    private Integer findId;
    @ApiModelProperty(value = "评论id")
    private Integer findCommentId;
    @ApiModelProperty(value = "是否可以跳转动态详情 0是1否")
    private Integer isTurn;
}