package com.ruoyi.framework.web.domain; import lombok.Data; @Data public class Message { /** * 发送者 */ private String senderId; /** * 接收者 (all 表示群发) */ private String receiverId; /** * 消息类型(text/heartbeat) */ private String type; /** * 消息内容 */ private String content; public Message() { } public Message(String content) { this.type = "text"; this.content = content; } }