first commit
This commit is contained in:
46
hrmsEjb/wenrgise/hrms/bean/HrmRecApplnMtnRefDtlBean.java
Normal file
46
hrmsEjb/wenrgise/hrms/bean/HrmRecApplnMtnRefDtlBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmRecApplnMtnRefDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtName;
|
||||
|
||||
private String txtAddress;
|
||||
|
||||
private String txtPhone;
|
||||
|
||||
private String txtPosition;
|
||||
|
||||
public String getTxtName() {
|
||||
return this.txtName;
|
||||
}
|
||||
|
||||
public void setTxtName(String newTxtName) {
|
||||
this.txtName = newTxtName;
|
||||
}
|
||||
|
||||
public String getTxtAddress() {
|
||||
return this.txtAddress;
|
||||
}
|
||||
|
||||
public void setTxtAddress(String newTxtAddress) {
|
||||
this.txtAddress = newTxtAddress;
|
||||
}
|
||||
|
||||
public String getTxtPhone() {
|
||||
return this.txtPhone;
|
||||
}
|
||||
|
||||
public void setTxtPhone(String newTxtPhone) {
|
||||
this.txtPhone = newTxtPhone;
|
||||
}
|
||||
|
||||
public String getTxtPosition() {
|
||||
return this.txtPosition;
|
||||
}
|
||||
|
||||
public void setTxtPosition(String newTxtPosition) {
|
||||
this.txtPosition = newTxtPosition;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user