📄 message.java
字号:
package com.hlfly.entity;
import java.util.Date;
public class Message {
private int id;
private String note;
private String sendUname;
private String receiveUname;
private Date postTime;
private int readSign;
public Message() {
super();
// TODO 自动生成构造函数存根
}
public Message(int id, String note, String sendUname, String receiveUname, Date postTime, int readSign) {
super();
this.id = id;
this.note = note;
this.sendUname = sendUname;
this.receiveUname = receiveUname;
this.postTime = postTime;
this.readSign = readSign;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
public Date getPostTime() {
return postTime;
}
public void setPostTime(Date postTime) {
this.postTime = postTime;
}
public int getReadSign() {
return readSign;
}
public void setReadSign(int readSign) {
this.readSign = readSign;
}
public String getReceiveUname() {
return receiveUname;
}
public void setReceiveUname(String receiveUname) {
this.receiveUname = receiveUname;
}
public String getSendUname() {
return sendUname;
}
public void setSendUname(String sendUname) {
this.sendUname = sendUname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -