package com.example.jz.modle.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 消息表(Message)实体类
|
*
|
* @author makejava
|
* @since 2022-07-12 16:50:59
|
*/
|
public class Message implements Serializable {
|
private static final long serialVersionUID = -28737108473853898L;
|
/**
|
* 消息内容
|
*/
|
private String text;
|
/**
|
* 用户id
|
*/
|
private Integer userId;
|
/**
|
* 群id
|
*/
|
private Integer groupId;
|
/**
|
* 消息id
|
*/
|
private Integer id;
|
|
private Date ctime;
|
|
|
public String getText() {
|
return text;
|
}
|
|
public void setText(String text) {
|
this.text = text;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Integer getGroupId() {
|
return groupId;
|
}
|
|
public void setGroupId(Integer groupId) {
|
this.groupId = groupId;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Date getCtime() {
|
return ctime;
|
}
|
|
public void setCtime(Date ctime) {
|
this.ctime = ctime;
|
}
|
|
}
|