📄 process.java
字号:
package oa.dailywork.model.po;
import java.util.Date;
import java.util.Set;
import oa.popedommanager.model.po.Employee;
/**
* Process generated by MyEclipse Persistence Tools
*/
public class Process implements java.io.Serializable {
// Fields
private Long processId;
private Date commentDate;
private String action;
private String tranComment;
private String tranResult;
private AcceptFile acceptfile;
private Employee employee;
// Constructors
/** default constructor */
public Process() {
}
/** minimal constructor */
public Process(Date commentDate, AcceptFile acceptfile) {
this.commentDate = commentDate;
this.acceptfile = acceptfile;
}
/** full constructor */
public Process(AcceptFile acceptfile, Date commentDate, String tranResult,
String tranComment, Long finished,String action) {
this.action = action;
this.tranComment = tranComment;
this.commentDate = commentDate;
this.tranResult = tranResult;
this.acceptfile = acceptfile;
}
// Property accessors
public String getTranComment() {
return tranComment;
}
public void setTranComment(String tranComment) {
this.tranComment = tranComment;
}
public String getTranResult() {
return tranResult;
}
public void setTranResult(String tranResult) {
this.tranResult = tranResult;
}
public Long getProcessId() {
return this.processId;
}
public void setProcessId(Long processId) {
this.processId = processId;
}
public Date getCommentDate() {
return this.commentDate;
}
public void setCommentDate(Date commentDate) {
this.commentDate = commentDate;
}
public AcceptFile getAcceptfile() {
return acceptfile;
}
public void setAcceptfile(AcceptFile acceptfile) {
this.acceptfile = acceptfile;
}
public Employee getEmployee() {
return employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -