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;
|
}
|