📄 document.java
字号:
package com.oa.document.db;
import java.util.Date;
/**
* Document generated by MyEclipse - Hibernate Tools
*/
public class Document implements java.io.Serializable {
// Fields
private Integer id;
private String sender;
private String title;
private String content;
private String file;
private String truefile;
private String state;
private Date date;
// Constructors
/** default constructor */
public Document() {
}
/** minimal constructor */
public Document(String sender, String title, String content, String state, Date date) {
this.sender = sender;
this.title = title;
this.content = content;
this.state = state;
this.date = date;
}
/** full constructor */
public Document(String sender, String title, String content, String file, String truefile, String state, Date date) {
this.sender = sender;
this.title = title;
this.content = content;
this.file = file;
this.truefile = truefile;
this.state = state;
this.date = date;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getSender() {
return this.sender;
}
public void setSender(String sender) {
this.sender = sender;
}
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 String getFile() {
return this.file;
}
public void setFile(String file) {
this.file = file;
}
public String getTruefile() {
return this.truefile;
}
public void setTruefile(String truefile) {
this.truefile = truefile;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public Date getDate() {
return this.date;
}
public void setDate(Date date) {
this.date = date;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -