first commit
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmLvLedgerDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtEmpNo;
|
||||
|
||||
private String txtleaveTypes;
|
||||
|
||||
private String txtCreditDate;
|
||||
|
||||
private String txtOpeningBalance;
|
||||
|
||||
private String txtLeavesCredited;
|
||||
|
||||
private String txtLeavesTaken;
|
||||
|
||||
private String txtLeavesEncashed;
|
||||
|
||||
private String txtLeavesPending;
|
||||
|
||||
private String txtLeaveBalance;
|
||||
|
||||
public String getTxtCreditDate() {
|
||||
return this.txtCreditDate;
|
||||
}
|
||||
|
||||
public void setTxtCreditDate(String newTxtCreditDate) {
|
||||
this.txtCreditDate = newTxtCreditDate;
|
||||
}
|
||||
|
||||
public String getTxtEmpNo() {
|
||||
return this.txtEmpNo;
|
||||
}
|
||||
|
||||
public void setTxtEmpNo(String newTxtEmpNo) {
|
||||
this.txtEmpNo = newTxtEmpNo;
|
||||
}
|
||||
|
||||
public String getTxtLeaveBalance() {
|
||||
return this.txtLeaveBalance;
|
||||
}
|
||||
|
||||
public void setTxtLeaveBalance(String newTxtLeaveBalance) {
|
||||
this.txtLeaveBalance = newTxtLeaveBalance;
|
||||
}
|
||||
|
||||
public String getTxtLeavesCredited() {
|
||||
return this.txtLeavesCredited;
|
||||
}
|
||||
|
||||
public void setTxtLeavesCredited(String newTxtLeavesCredited) {
|
||||
this.txtLeavesCredited = newTxtLeavesCredited;
|
||||
}
|
||||
|
||||
public String getTxtLeavesEncashed() {
|
||||
return this.txtLeavesEncashed;
|
||||
}
|
||||
|
||||
public void setTxtLeavesEncashed(String newTxtLeavesEncashed) {
|
||||
this.txtLeavesEncashed = newTxtLeavesEncashed;
|
||||
}
|
||||
|
||||
public String getTxtLeavesTaken() {
|
||||
return this.txtLeavesTaken;
|
||||
}
|
||||
|
||||
public void setTxtLeavesTaken(String newTxtLeavesTaken) {
|
||||
this.txtLeavesTaken = newTxtLeavesTaken;
|
||||
}
|
||||
|
||||
public String getTxtOpeningBalance() {
|
||||
return this.txtOpeningBalance;
|
||||
}
|
||||
|
||||
public void setTxtOpeningBalance(String newTxtOpeningBalance) {
|
||||
this.txtOpeningBalance = newTxtOpeningBalance;
|
||||
}
|
||||
|
||||
public String getTxtleaveTypes() {
|
||||
return this.txtleaveTypes;
|
||||
}
|
||||
|
||||
public void setTxtleaveTypes(String newTxtleaveTypes) {
|
||||
this.txtleaveTypes = newTxtleaveTypes;
|
||||
}
|
||||
|
||||
public String getTxtLeavesPending() {
|
||||
return this.txtLeavesPending;
|
||||
}
|
||||
|
||||
public void setTxtLeavesPending(String newTxtLeavesPending) {
|
||||
this.txtLeavesPending = newTxtLeavesPending;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user