first commit
This commit is contained in:
66
hrmsEjb/wenrgise/workflow/bean/DocHistoryDtlBean.java
Normal file
66
hrmsEjb/wenrgise/workflow/bean/DocHistoryDtlBean.java
Normal file
@@ -0,0 +1,66 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class DocHistoryDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtSrlNo = "";
|
||||
|
||||
private String txtEmpNum = "";
|
||||
|
||||
private String txtStartTime = "";
|
||||
|
||||
private String txtDuration = "";
|
||||
|
||||
private String txtActivity = "";
|
||||
|
||||
private String txtDocType = "";
|
||||
|
||||
public String getTxtSrlNo() {
|
||||
return this.txtSrlNo;
|
||||
}
|
||||
|
||||
public void setTxtSrlNo(String newTxtSrlNo) {
|
||||
this.txtSrlNo = newTxtSrlNo;
|
||||
}
|
||||
|
||||
public String getTxtEmpNum() {
|
||||
return this.txtEmpNum;
|
||||
}
|
||||
|
||||
public void setTxtEmpNum(String newTxtEmpNum) {
|
||||
this.txtEmpNum = newTxtEmpNum;
|
||||
}
|
||||
|
||||
public String getTxtStartTime() {
|
||||
return this.txtStartTime;
|
||||
}
|
||||
|
||||
public void setTxtStartTime(String newTxtStartTime) {
|
||||
this.txtStartTime = newTxtStartTime;
|
||||
}
|
||||
|
||||
public String getTxtDuration() {
|
||||
return this.txtDuration;
|
||||
}
|
||||
|
||||
public void setTxtDuration(String newTxtDuration) {
|
||||
this.txtDuration = newTxtDuration;
|
||||
}
|
||||
|
||||
public String getTxtActivity() {
|
||||
return this.txtActivity;
|
||||
}
|
||||
|
||||
public void setTxtActivity(String newTxtActivity) {
|
||||
this.txtActivity = newTxtActivity;
|
||||
}
|
||||
|
||||
public String getTxtDocType() {
|
||||
return this.txtDocType;
|
||||
}
|
||||
|
||||
public void setTxtDocType(String newTxtDocType) {
|
||||
this.txtDocType = newTxtDocType;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user