📄 docmove.java
字号:
package com.oa.document.db;
import java.util.Date;
/**
* Docmove generated by MyEclipse - Hibernate Tools
*/
public class Docmove implements java.io.Serializable {
// Fields
private Integer id;
private String doctype;
private Integer docid;
private String auditor;
private String opinion;
private String nextauditor;
private String yiauditor;
private String state;
private Date date;
// Constructors
/** default constructor */
public Docmove() {
}
/** minimal constructor */
public Docmove(String doctype, Integer docid, String auditor, String nextauditor, Date date) {
this.doctype = doctype;
this.docid = docid;
this.auditor = auditor;
this.nextauditor = nextauditor;
this.date = date;
}
/** full constructor */
public Docmove(String doctype, Integer docid, String auditor, String opinion, String nextauditor, Date date) {
this.doctype = doctype;
this.docid = docid;
this.auditor = auditor;
this.opinion = opinion;
this.nextauditor = nextauditor;
this.date = date;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getDoctype() {
return this.doctype;
}
public void setDoctype(String doctype) {
this.doctype = doctype;
}
public Integer getDocid() {
return this.docid;
}
public void setDocid(Integer docid) {
this.docid = docid;
}
public String getAuditor() {
return this.auditor;
}
public void setAuditor(String auditor) {
this.auditor = auditor;
}
public String getOpinion() {
return this.opinion;
}
public void setOpinion(String opinion) {
this.opinion = opinion;
}
public String getNextauditor() {
return this.nextauditor;
}
public void setNextauditor(String nextauditor) {
this.nextauditor = nextauditor;
}
public Date getDate() {
return this.date;
}
public void setDate(Date date) {
this.date = date;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getYiauditor() {
return yiauditor;
}
public void setYiauditor(String yiauditor) {
this.yiauditor = yiauditor;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -