first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
package WEB-INF.classes.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;
}
}