StompMessage.java
934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.huaheng.pc.stompwebsocket.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
@TableName(value = "stomp_message")
public class StompMessage implements Serializable {
/**
* ID
*/
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 话题
*/
@TableField(value = "topic")
private String topic;
/**
* 接收方登录史
*/
@TableField(value = "user")
private String user;
/**
* 消息
*/
@TableField(value = "msg")
private String msg;
@TableField(value = "created")
private Date created;
@TableField(value = "lastUpdated")
private Date lastUpdated;
}