📄 dispatchfile.java
字号:
package oa.dailywork.model.po;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import oa.popedommanager.model.po.Employee;
/**
* DispatchFile generated by MyEclipse Persistence Tools
*/
public class DispatchFile implements java.io.Serializable {
// Fields
private Long dispatchId;
private String comeCode;
private Date dispatchDate;
private Date finishDate;
private String mainSend;
private String copySend;
private String title;
private String keywords;
private String content;
private String maker;
private Long transitionStatus;
private Long currentFlow;
private Set affix =new HashSet() ;
private Set process = new HashSet();
private AcceptStatus status;
private Employee employee;
private Secret secret;
// Constructors
public Set getAffix() {
return affix;
}
public void setAffix(Set affix) {
this.affix = affix;
}
public Employee getEmployee() {
return employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public Set getProcess() {
return process;
}
public void setProcess(Set process) {
this.process = process;
}
public Secret getSecret() {
return secret;
}
public void setSecret(Secret secret) {
this.secret = secret;
}
public AcceptStatus getStatus() {
return status;
}
public void setStatus(AcceptStatus status) {
this.status = status;
}
/** default constructor */
public DispatchFile() {
}
/** minimal constructor */
public DispatchFile(Long deptId, Date dispatchDate, Date finishDate,
String title, Long servelLevel, Long urgentLevel,
Long importantLevel, String maker, String makerDept,
Long transitionStatus, Long currentFlow) {
this.dispatchDate = dispatchDate;
this.finishDate = finishDate;
this.title = title;
this.maker = maker;
this.transitionStatus = transitionStatus;
this.currentFlow = currentFlow;
}
/** full constructor */
public DispatchFile(Long deptId, String comeCode, Date dispatchDate,
Date finishDate, String mainSend, String copySend, String title,
String keywords, String content, Long servelLevel,
Long urgentLevel, Long importantLevel, String maker,
String makerDept, Long transitionStatus, Long currentFlow,
String flowStyle) {
this.comeCode = comeCode;
this.dispatchDate = dispatchDate;
this.finishDate = finishDate;
this.mainSend = mainSend;
this.copySend = copySend;
this.title = title;
this.keywords = keywords;
this.content = content;
this.maker = maker;
this.transitionStatus = transitionStatus;
this.currentFlow = currentFlow;
}
// Property accessors
public Long getDispatchId() {
return this.dispatchId;
}
public void setDispatchId(Long dispatchId) {
this.dispatchId = dispatchId;
}
public String getComeCode() {
return this.comeCode;
}
public void setComeCode(String comeCode) {
this.comeCode = comeCode;
}
public Date getDispatchDate() {
return this.dispatchDate;
}
public void setDispatchDate(Date dispatchDate) {
this.dispatchDate = dispatchDate;
}
public Date getFinishDate() {
return this.finishDate;
}
public void setFinishDate(Date finishDate) {
this.finishDate = finishDate;
}
public String getMainSend() {
return this.mainSend;
}
public void setMainSend(String mainSend) {
this.mainSend = mainSend;
}
public String getCopySend() {
return this.copySend;
}
public void setCopySend(String copySend) {
this.copySend = copySend;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getKeywords() {
return this.keywords;
}
public void setKeywords(String keywords) {
this.keywords = keywords;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getMaker() {
return this.maker;
}
public void setMaker(String maker) {
this.maker = maker;
}
public Long getTransitionStatus() {
return this.transitionStatus;
}
public void setTransitionStatus(Long transitionStatus) {
this.transitionStatus = transitionStatus;
}
public Long getCurrentFlow() {
return this.currentFlow;
}
public void setCurrentFlow(Long currentFlow) {
this.currentFlow = currentFlow;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -