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,186 @@
package wenrgise.hrms.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseHeaderBean;
public class HrmSepOrderHdrBean extends BaseHeaderBean implements Serializable {
private String orderNo;
private String orderDate;
private String orderNoId;
private String applicationNo;
private String dateApplied;
private String initiatedBy;
private String employeeNo;
private String employeeName;
private String sepCat;
private String reqSepDate;
private String reason;
private String actSepDate;
private String approvedBy;
private String remarks;
private String applnId;
private String approverId;
private String empId;
private String sepCatId;
public String getOrderNo() {
return this.orderNo;
}
public void setOrderNo(String newOrderNo) {
this.orderNo = newOrderNo;
}
public String getOrderDate() {
return this.orderDate;
}
public void setOrderDate(String newOrderDate) {
this.orderDate = newOrderDate;
}
public String getOrderNoId() {
return this.orderNoId;
}
public void setOrderNoId(String newOrderNoId) {
this.orderNoId = newOrderNoId;
}
public String getApplicationNo() {
return this.applicationNo;
}
public void setApplicationNo(String newApplicationNo) {
this.applicationNo = newApplicationNo;
}
public String getDateApplied() {
return this.dateApplied;
}
public void setDateApplied(String newDateApplied) {
this.dateApplied = newDateApplied;
}
public String getInitiatedBy() {
return this.initiatedBy;
}
public void setInitiatedBy(String newInitiatedBy) {
this.initiatedBy = newInitiatedBy;
}
public String getEmployeeNo() {
return this.employeeNo;
}
public void setEmployeeNo(String newEmployeeNo) {
this.employeeNo = newEmployeeNo;
}
public String getEmployeeName() {
return this.employeeName;
}
public void setEmployeeName(String newEmployeeName) {
this.employeeName = newEmployeeName;
}
public String getSepCat() {
return this.sepCat;
}
public void setSepCat(String newSepCat) {
this.sepCat = newSepCat;
}
public String getReqSepDate() {
return this.reqSepDate;
}
public void setReqSepDate(String newReqSepDate) {
this.reqSepDate = newReqSepDate;
}
public String getReason() {
return this.reason;
}
public void setReason(String newReason) {
this.reason = newReason;
}
public String getActSepDate() {
return this.actSepDate;
}
public void setActSepDate(String newActSepDate) {
this.actSepDate = newActSepDate;
}
public String getApprovedBy() {
return this.approvedBy;
}
public void setApprovedBy(String newApprovedBy) {
this.approvedBy = newApprovedBy;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String newRemarks) {
this.remarks = newRemarks;
}
public String getApplnId() {
return this.applnId;
}
public void setApplnId(String newApplnId) {
this.applnId = newApplnId;
}
public String getApproverId() {
return this.approverId;
}
public void setApproverId(String newApproverId) {
this.approverId = newApproverId;
}
public String getEmpId() {
return this.empId;
}
public void setEmpId(String newEmpId) {
this.empId = newEmpId;
}
public String getSepCatId() {
return this.sepCatId;
}
public void setSepCatId(String newSepCatId) {
this.sepCatId = newSepCatId;
}
}