📄 message.java
字号:
/*
* s2jsp.xmal.entity.Message
* 2007-08-13
* 短消息类
*/
package s2jsp.xmal.entity;
public class Message {
private int id; // 消息id
private String note; // 消息内容
private String sendUname; // 发送者的id
private String receiveUname; // 接收者的id
private String postTime; // 发送时间
private int readSign; // 已读标记,1表示已读,0表示未读
/**
* @return id
*/
public int getId() {
return id;
}
/**
* @param id 要设置的 id
*/
public void setId(int id) {
this.id = id;
}
/**
* @return note
*/
public String getNote() {
return note;
}
/**
* @param note 要设置的 note
*/
public void setNote(String note) {
this.note = note;
}
/**
* @return receiveUname
*/
public String getReceiveUname() {
return receiveUname;
}
/**
* @param receiveUname 要设置的 receiveUname
*/
public void setReceiveUname(String receiveUname) {
this.receiveUname = receiveUname;
}
/**
* @return sendUname
*/
public String getSendUname() {
return sendUname;
}
/**
* @param sendUname 要设置的 sendUname
*/
public void setSendUname(String sendUname) {
this.sendUname = sendUname;
}
/**
* @return postTime
*/
public String getPostTime() {
return postTime;
}
/**
* @param postTime 要设置的 postTime
*/
public void setPostTime(String postTime) {
this.postTime = postTime;
}
/**
* @return readSign
*/
public int getReadSign() {
return readSign;
}
/**
* @param readSign 要设置的 readSign
*/
public void setReadSign(int readSign) {
this.readSign = readSign;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -