📄 docacceptrecord.java
字号:
package oa.dailywork.model.po;
import java.util.Date;
/**
* DocAcceptRecord generated by MyEclipse Persistence Tools
*/
public class DocAcceptRecord implements java.io.Serializable {
// Fields
private Long recordId;
private String recordTitle;
private String keywords;
private Date createTime;
private Long createManId;
private String mark;
// Constructors
/** default constructor */
public DocAcceptRecord() {
}
/** minimal constructor */
public DocAcceptRecord(String recordTitle, Date createTime, Long createManId) {
this.recordTitle = recordTitle;
this.createTime = createTime;
this.createManId = createManId;
}
/** full constructor */
public DocAcceptRecord(String recordTitle, String keywords,
Date createTime, Long createManId, String mark) {
this.recordTitle = recordTitle;
this.keywords = keywords;
this.createTime = createTime;
this.createManId = createManId;
this.mark = mark;
}
// Property accessors
public Long getRecordId() {
return this.recordId;
}
public void setRecordId(Long recordId) {
this.recordId = recordId;
}
public String getRecordTitle() {
return this.recordTitle;
}
public void setRecordTitle(String recordTitle) {
this.recordTitle = recordTitle;
}
public String getKeywords() {
return this.keywords;
}
public void setKeywords(String keywords) {
this.keywords = keywords;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Long getCreateManId() {
return this.createManId;
}
public void setCreateManId(Long createManId) {
this.createManId = createManId;
}
public String getMark() {
return this.mark;
}
public void setMark(String mark) {
this.mark = mark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -