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,56 @@
package wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseHeaderBean;
public class HrmRecScrutAppMtnHdrBean extends BaseHeaderBean implements Serializable {
String referenceNo;
String adForDesignation;
String stage;
String referenceNoId;
String adForDesignationId;
public String getReferenceNo() {
return this.referenceNo;
}
public void setReferenceNo(String newReferenceNo) {
this.referenceNo = newReferenceNo;
}
public String getAdForDesignation() {
return this.adForDesignation;
}
public void setAdForDesignation(String newAdForDesignation) {
this.adForDesignation = newAdForDesignation;
}
public String getStage() {
return this.stage;
}
public void setStage(String newStage) {
this.stage = newStage;
}
public String getReferenceNoId() {
return this.referenceNoId;
}
public void setReferenceNoId(String newReferenceNoId) {
this.referenceNoId = newReferenceNoId;
}
public String getAdForDesignationId() {
return this.adForDesignationId;
}
public void setAdForDesignationId(String newAdForDesignationId) {
this.adForDesignationId = newAdForDesignationId;
}
}