Message.java 263 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package com.huaheng.pc.stompwebsocket.domain; import lombok.Data; @Data public class Message { //消息类型 int type = 1; //标题 String title; //内容 String content; //发生时间 long when = System.currentTimeMillis(); }