97 lines
2.0 KiB
Java
97 lines
2.0 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmEmpPersPFDtlBean extends BaseDetailBean implements Serializable {
|
|
String txtRelation;
|
|
|
|
String txtNomineeName;
|
|
|
|
String txtPercentage;
|
|
|
|
String txtRelationId;
|
|
|
|
private String txtNomineeId;
|
|
|
|
private String txtDob;
|
|
|
|
private String txtAddress;
|
|
|
|
private String txtTotalAmount;
|
|
|
|
private String txtMinorDetails;
|
|
|
|
public String getTxtRelation() {
|
|
return this.txtRelation;
|
|
}
|
|
|
|
public void setTxtRelation(String newTxtRelation) {
|
|
this.txtRelation = newTxtRelation;
|
|
}
|
|
|
|
public String getTxtNomineeName() {
|
|
return this.txtNomineeName;
|
|
}
|
|
|
|
public void setTxtNomineeName(String newTxtNomineeName) {
|
|
this.txtNomineeName = newTxtNomineeName;
|
|
}
|
|
|
|
public String getTxtPercentage() {
|
|
return this.txtPercentage;
|
|
}
|
|
|
|
public void setTxtPercentage(String newTxtPercentage) {
|
|
this.txtPercentage = newTxtPercentage;
|
|
}
|
|
|
|
public String getTxtRelationId() {
|
|
return this.txtRelationId;
|
|
}
|
|
|
|
public void setTxtRelationId(String newTxtRelationId) {
|
|
this.txtRelationId = newTxtRelationId;
|
|
}
|
|
|
|
public String getTxtNomineeId() {
|
|
return this.txtNomineeId;
|
|
}
|
|
|
|
public void setTxtNomineeId(String newTxtNomineeId) {
|
|
this.txtNomineeId = newTxtNomineeId;
|
|
}
|
|
|
|
public String getTxtDob() {
|
|
return this.txtDob;
|
|
}
|
|
|
|
public void setTxtDob(String newTxtDob) {
|
|
this.txtDob = newTxtDob;
|
|
}
|
|
|
|
public String getTxtAddress() {
|
|
return this.txtAddress;
|
|
}
|
|
|
|
public void setTxtAddress(String newTxtAddress) {
|
|
this.txtAddress = newTxtAddress;
|
|
}
|
|
|
|
public String getTxtTotalAmount() {
|
|
return this.txtTotalAmount;
|
|
}
|
|
|
|
public void setTxtTotalAmount(String newTxtTotalAmount) {
|
|
this.txtTotalAmount = newTxtTotalAmount;
|
|
}
|
|
|
|
public String getTxtMinorDetails() {
|
|
return this.txtMinorDetails;
|
|
}
|
|
|
|
public void setTxtMinorDetails(String newTxtMinorDetails) {
|
|
this.txtMinorDetails = newTxtMinorDetails;
|
|
}
|
|
}
|