package wenrgise.hrms.bean; import java.io.Serializable; import wenrgise.common.bean.BaseDetailBean; public class HrmEmpPersRefDtlBean extends BaseDetailBean implements Serializable { String txtName; String txtAddress; private String txtTelephoneNo; String txtPositionOccupation; 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 getTxtTelephoneNo() { return this.txtTelephoneNo; } public void setTxtTelephoneNo(String newTxtTelephoneNo) { this.txtTelephoneNo = newTxtTelephoneNo; } public String getTxtPositionOccupation() { return this.txtPositionOccupation; } public void setTxtPositionOccupation(String newTxtPositionOccupation) { this.txtPositionOccupation = newTxtPositionOccupation; } }