📄 foundproceeding.java
字号:
package com.je.ims.hibernate;
/**
* FoundProceeding generated by MyEclipse - Hibernate Tools
*/
public class FoundProceeding implements java.io.Serializable {
// Fields
private FoundProceedingId id;
private String recent;
private String content;
private String attachment;
// Constructors
/** default constructor */
public FoundProceeding() {
}
/** minimal constructor */
public FoundProceeding(FoundProceedingId id) {
this.id = id;
}
/** full constructor */
public FoundProceeding(FoundProceedingId id, String recent, String content, String attachment) {
this.id = id;
this.recent = recent;
this.content = content;
this.attachment = attachment;
}
// Property accessors
public FoundProceedingId getId() {
return this.id;
}
public void setId(FoundProceedingId id) {
this.id = id;
}
public String getRecent() {
return this.recent;
}
public void setRecent(String recent) {
this.recent = recent;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getAttachment() {
return this.attachment;
}
public void setAttachment(String attachment) {
this.attachment = attachment;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -