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.BaseHeaderBean;
public class HrmEligibilityRuleValuesLovBean extends BaseHeaderBean implements Serializable {
private String id;
private String code;
private String name;
private String heirarchy;
public String getId() {
return this.id;
}
public void setId(String newId) {
this.id = newId;
}
public String getCode() {
return this.code;
}
public void setCode(String newCode) {
this.code = newCode;
}
public String getName() {
return this.name;
}
public void setName(String newName) {
this.name = newName;
}
public String getHeirarchy() {
return this.heirarchy;
}
public void setHeirarchy(String newHeirarchy) {
this.heirarchy = newHeirarchy;
}
}