📄 document.java
字号:
package com.emis.model.library.hibernate;
import java.util.HashSet;
import java.util.Set;
/**
* Document generated by MyEclipse - Hibernate Tools
*/
public class Document implements java.io.Serializable {
// Fields
private Integer id;
private String name;
private String summary;
private String content;
private String remarks;
private Set histories = new HashSet(0);
// Constructors
/** default constructor */
public Document() {
}
/** minimal constructor */
public Document(Integer id, String name, String summary, String content, String remarks) {
this.id = id;
this.name = name;
this.summary = summary;
this.content = content;
this.remarks = remarks;
}
/** full constructor */
public Document(Integer id, String name, String summary, String content, String remarks, Set histories) {
this.id = id;
this.name = name;
this.summary = summary;
this.content = content;
this.remarks = remarks;
this.histories = histories;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getSummary() {
return this.summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
public Set getHistories() {
return this.histories;
}
public void setHistories(Set histories) {
this.histories = histories;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -