📄 acceptfile.java
字号:
package oa.dailywork.model.po;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import oa.popedommanager.model.po.Employee;
/**
* AcceptFile generated by MyEclipse Persistence Tools
*/
public class AcceptFile implements java.io.Serializable {
// Fields
private Long acceptId;
private String comeCode;
private String comeUnit;
private Date acceptDate;
private Date finishDate;
private String title;
private String keywords;
private String content;
private String maker;
private Long currentFlow;
private String draftMsg;
private Set affix = new HashSet();
private Set process = new HashSet();
private AcceptStatus status;
private Employee employee;
private Secret secret;
// Constructors
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;
}
public Set getProcess() {
return process;
}
public void setProcess(Set process) {
this.process = process;
}
/** default constructor */
public AcceptFile() {
}
/** minimal constructor */
public AcceptFile(Long deptId, Date acceptDate, String title, String maker,
Long currentFlow) {
this.acceptDate = acceptDate;
this.title = title;
this.maker = maker;
this.currentFlow = currentFlow;
}
/** full constructor */
public AcceptFile(Long deptId, String comeCode, String comeUnit,
Date acceptDate, Date finishDate, String title, String keywords,
String content, String maker, Long currentFlow,String draftMsg) {
this.comeCode = comeCode;
this.comeUnit = comeUnit;
this.acceptDate = acceptDate;
this.finishDate = finishDate;
this.title = title;
this.keywords = keywords;
this.content = content;
this.maker = maker;
this.draftMsg=draftMsg;
this.currentFlow = currentFlow;
}
// Property accessors
public Long getAcceptId() {
return this.acceptId;
}
public void setAcceptId(Long acceptId) {
this.acceptId = acceptId;
}
public String getComeCode() {
return this.comeCode;
}
public void setComeCode(String comeCode) {
this.comeCode = comeCode;
}
public String getComeUnit() {
return this.comeUnit;
}
public void setComeUnit(String comeUnit) {
this.comeUnit = comeUnit;
}
public Date getAcceptDate() {
return this.acceptDate;
}
public void setAcceptDate(Date acceptDate) {
this.acceptDate = acceptDate;
}
public Date getFinishDate() {
return this.finishDate;
}
public void setFinishDate(Date finishDate) {
this.finishDate = finishDate;
}
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 getCurrentFlow() {
return this.currentFlow;
}
public void setCurrentFlow(Long currentFlow) {
this.currentFlow = currentFlow;
}
public Employee getEmployee() {
return employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public Set getAffix() {
return affix;
}
public void setAffix(Set affix) {
this.affix = affix;
}
public String getDraftMsg() {
return draftMsg;
}
public void setDraftMsg(String draftMsg) {
this.draftMsg = draftMsg;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -