linfeng-community/src/main/java/io/linfeng/common/response/MessageNoticeResponse.java
2022-08-17 12:55:44 +08:00

66 lines
1.5 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* -----------------------------------
* 林风社交论坛开源版本请务必保留此注释头信息
* 开源地址: https://gitee.com/virus010101/linfeng-community
* 商业版演示站点: https://www.linfeng.tech
* 商业版购买联系技术客服 QQ: 3582996245
* 可正常分享和学习源码,不得转卖或非法牟利!
* Copyright (c) 2021-2023 linfeng all rights reserved.
* 版权所有 ,侵权必究!
* -----------------------------------
*/
package io.linfeng.common.response;
import io.linfeng.modules.admin.entity.AppUserEntity;
import io.linfeng.modules.admin.entity.MessageEntity;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* @author linfeng
* @date 2022/2/8 21:25
*/
@Data
public class MessageNoticeResponse implements Serializable {
private static final long serialVersionUID = 1L;
private Integer mId;
/**
* 发送者uid
*/
private Integer fromUid;
/**
* 接收者uid
*/
private Integer toUid;
/**
* 帖子id
*/
private Integer postId;
/**
* 推送标题
*/
private String title;
/**
* 消息内容
*/
private String content;
/**
* 0未读1已读
*/
private Integer status;
/**
* 1为点赞2为评论 3为收藏 4为关注 5为推送文章 6私聊
*/
private Integer type;
/**
* 创建时间
*/
private Date createTime;
private AppUserEntity userInfo;
}