📄 message.java
字号:
package tarena.entity;
import java.util.Date;
/**
* Message generated by MyEclipse Persistence Tools
*/
@SuppressWarnings("serial")
public class Message implements java.io.Serializable {
// Fields
private Integer id;
private String sendname;
private String receivename;
private String title;
private String content;
private Byte savebox;
private Date sendtime;
private Byte isread;
private Byte messtype;
// Constructors
/** default constructor */
public Message() {
}
/** full constructor */
public Message(String sendname, String receivename, String title,
String content, Byte savebox, Date sendtime, Byte isread,
Byte messtype) {
this.sendname = sendname;
this.receivename = receivename;
this.title = title;
this.content = content;
this.savebox = savebox;
this.sendtime = sendtime;
this.isread = isread;
this.messtype = messtype;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getSendname() {
return this.sendname;
}
public void setSendname(String sendname) {
this.sendname = sendname;
}
public String getReceivename() {
return this.receivename;
}
public void setReceivename(String receivename) {
this.receivename = receivename;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public Byte getSavebox() {
return this.savebox;
}
public void setSavebox(Byte savebox) {
this.savebox = savebox;
}
public Date getSendtime() {
return this.sendtime;
}
public void setSendtime(Date sendtime) {
this.sendtime = sendtime;
}
public Byte getIsread() {
return this.isread;
}
public void setIsread(Byte isread) {
this.isread = isread;
}
public Byte getMesstype() {
return this.messtype;
}
public void setMesstype(Byte messtype) {
this.messtype = messtype;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -