Message.java
358 Bytes
package com.huaheng.pc.stompwebsocket.domain;
import lombok.Data;
/**
 * @author
 */
@Data
public class Message {
    /**
     * //消息类型
     */
    int type = 1;
    /**
     *  //标题
     */
    String title;
    /**
     * //内容
     */
    String content;
    /**
     * //发生时间
     */
    long when = System.currentTimeMillis();
}