package com.mindskip.xzs.viewmodel.student.user; import lombok.Data; /** * @version 2.2.0 * @description: 消息分页返回 * Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司 * @date 2021 /9/7 9:45 */ @Data public class MessageResponseVM { private Integer id; /** * 标题 */ private String title; /** * 消息id */ private Integer messageId; /** * 消息内容 */ private String content; /** * 是否已读 */ private Boolean readed; /** * 创建时间 */ private String createTime; /** * 发送者用户名 */ private String sendUserName; }