87 lines
1.6 KiB
Java
87 lines
1.6 KiB
Java
package wenrgise.workflow.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class WflDelegateMstHdrBean extends BaseHeaderBean implements Serializable {
|
|
String empName;
|
|
|
|
String empNo;
|
|
|
|
String fromDate;
|
|
|
|
String toDate;
|
|
|
|
String delegateAll;
|
|
|
|
String empId;
|
|
|
|
String remarks;
|
|
|
|
String delegateAllDoc = "N";
|
|
|
|
public String getEmpName() {
|
|
return this.empName;
|
|
}
|
|
|
|
public void setEmpName(String newEmpName) {
|
|
this.empName = newEmpName;
|
|
}
|
|
|
|
public String getEmpNo() {
|
|
return this.empNo;
|
|
}
|
|
|
|
public void setEmpNo(String newEmpNo) {
|
|
this.empNo = newEmpNo;
|
|
}
|
|
|
|
public String getFromDate() {
|
|
return this.fromDate;
|
|
}
|
|
|
|
public void setFromDate(String newFromDate) {
|
|
this.fromDate = newFromDate;
|
|
}
|
|
|
|
public String getToDate() {
|
|
return this.toDate;
|
|
}
|
|
|
|
public void setToDate(String newToDate) {
|
|
this.toDate = newToDate;
|
|
}
|
|
|
|
public String getDelegateAll() {
|
|
return this.delegateAll;
|
|
}
|
|
|
|
public void setDelegateAll(String newDelegateAll) {
|
|
this.delegateAll = newDelegateAll;
|
|
}
|
|
|
|
public String getEmpId() {
|
|
return this.empId;
|
|
}
|
|
|
|
public void setEmpId(String newEmpId) {
|
|
this.empId = newEmpId;
|
|
}
|
|
|
|
public String getRemarks() {
|
|
return this.remarks;
|
|
}
|
|
|
|
public void setRemarks(String newRemarks) {
|
|
this.remarks = newRemarks;
|
|
}
|
|
|
|
public String getDelegateAllDoc() {
|
|
return this.delegateAllDoc;
|
|
}
|
|
|
|
public void setDelegateAllDoc(String newDelegateAllDoc) {
|
|
this.delegateAllDoc = newDelegateAllDoc;
|
|
}
|
|
}
|