?? messagevo.java
字號(hào):
package com.lovo.vo;
import java.util.Date;
import com.lovo.po.UserPO;
public class MessageVO {
/** 消息的ID */
private int id;
/** 接收消息的人的名字 */
private UserPO receiveUser;
/** 發(fā)送消息的人的名字 */
private UserPO sendUser;
/** 消息的題目 */
private String title;
/** 消息的內(nèi)容 */
private String content;
/** 消息的發(fā)送的時(shí)間 */
private Date sendDate;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public UserPO getReceiveUser() {
return receiveUser;
}
public void setReceiveUser(UserPO receiveUser) {
this.receiveUser = receiveUser;
}
public Date getSendDate() {
return sendDate;
}
public void setSendDate(Date sendDate) {
this.sendDate = sendDate;
}
public UserPO getSendUser() {
return sendUser;
}
public void setSendUser(UserPO sendUser) {
this.sendUser = sendUser;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -