first commit
This commit is contained in:
146
hrmsEjb/wenrgise/hrms/bean/HrmAdvanceMstDtlBean.java
Normal file
146
hrmsEjb/wenrgise/hrms/bean/HrmAdvanceMstDtlBean.java
Normal file
@@ -0,0 +1,146 @@
|
||||
package wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmAdvanceMstDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtAdvanceDescription;
|
||||
|
||||
private String txtEffectiveFromDate;
|
||||
|
||||
private String txtEffectiveToDate;
|
||||
|
||||
private String txtMaxCalLimit;
|
||||
|
||||
private String txtNoOfTXN;
|
||||
|
||||
private String txtMaxLimitPerTXN;
|
||||
|
||||
private String txtFlatAmount;
|
||||
|
||||
private String txtSettlementUnit;
|
||||
|
||||
private String txtSettlementPeriod;
|
||||
|
||||
private String txtMoratoriumInMonths;
|
||||
|
||||
private String txtSettleThroughPayroll;
|
||||
|
||||
private String txtApplicableToAll;
|
||||
|
||||
private String txtNoOfMonSal;
|
||||
|
||||
private String txtEligibilityFactor;
|
||||
|
||||
public String getTxtAdvanceDescription() {
|
||||
return this.txtAdvanceDescription;
|
||||
}
|
||||
|
||||
public void setTxtAdvanceDescription(String newTxtAdvanceDescription) {
|
||||
this.txtAdvanceDescription = newTxtAdvanceDescription;
|
||||
}
|
||||
|
||||
public String getTxtEffectiveFromDate() {
|
||||
return this.txtEffectiveFromDate;
|
||||
}
|
||||
|
||||
public void setTxtEffectiveFromDate(String newTxtEffectiveFromDate) {
|
||||
this.txtEffectiveFromDate = newTxtEffectiveFromDate;
|
||||
}
|
||||
|
||||
public String getTxtEffectiveToDate() {
|
||||
return this.txtEffectiveToDate;
|
||||
}
|
||||
|
||||
public void setTxtEffectiveToDate(String newTxtEffectiveToDate) {
|
||||
this.txtEffectiveToDate = newTxtEffectiveToDate;
|
||||
}
|
||||
|
||||
public String getTxtMaxCalLimit() {
|
||||
return this.txtMaxCalLimit;
|
||||
}
|
||||
|
||||
public void setTxtMaxCalLimit(String newTxtMaxCalLimit) {
|
||||
this.txtMaxCalLimit = newTxtMaxCalLimit;
|
||||
}
|
||||
|
||||
public String getTxtNoOfTXN() {
|
||||
return this.txtNoOfTXN;
|
||||
}
|
||||
|
||||
public void setTxtNoOfTXN(String newTxtNoOfTXN) {
|
||||
this.txtNoOfTXN = newTxtNoOfTXN;
|
||||
}
|
||||
|
||||
public String getTxtMaxLimitPerTXN() {
|
||||
return this.txtMaxLimitPerTXN;
|
||||
}
|
||||
|
||||
public void setTxtMaxLimitPerTXN(String newTxtMaxLimitPerTXN) {
|
||||
this.txtMaxLimitPerTXN = newTxtMaxLimitPerTXN;
|
||||
}
|
||||
|
||||
public String getTxtFlatAmount() {
|
||||
return this.txtFlatAmount;
|
||||
}
|
||||
|
||||
public void setTxtFlatAmount(String newTxtFlatAmount) {
|
||||
this.txtFlatAmount = newTxtFlatAmount;
|
||||
}
|
||||
|
||||
public String getTxtSettlementUnit() {
|
||||
return this.txtSettlementUnit;
|
||||
}
|
||||
|
||||
public void setTxtSettlementUnit(String newTxtSettlementUnit) {
|
||||
this.txtSettlementUnit = newTxtSettlementUnit;
|
||||
}
|
||||
|
||||
public String getTxtSettlementPeriod() {
|
||||
return this.txtSettlementPeriod;
|
||||
}
|
||||
|
||||
public void setTxtSettlementPeriod(String newTxtSettlementPeriod) {
|
||||
this.txtSettlementPeriod = newTxtSettlementPeriod;
|
||||
}
|
||||
|
||||
public String getTxtMoratoriumInMonths() {
|
||||
return this.txtMoratoriumInMonths;
|
||||
}
|
||||
|
||||
public void setTxtMoratoriumInMonths(String newTxtMoratoriumInMonths) {
|
||||
this.txtMoratoriumInMonths = newTxtMoratoriumInMonths;
|
||||
}
|
||||
|
||||
public String getTxtSettleThroughPayroll() {
|
||||
return this.txtSettleThroughPayroll;
|
||||
}
|
||||
|
||||
public void setTxtSettleThroughPayroll(String newTxtSettleThroughPayroll) {
|
||||
this.txtSettleThroughPayroll = newTxtSettleThroughPayroll;
|
||||
}
|
||||
|
||||
public String getTxtApplicableToAll() {
|
||||
return this.txtApplicableToAll;
|
||||
}
|
||||
|
||||
public void setTxtApplicableToAll(String newTxtApplicableToAll) {
|
||||
this.txtApplicableToAll = newTxtApplicableToAll;
|
||||
}
|
||||
|
||||
public String getTxtNoOfMonSal() {
|
||||
return this.txtNoOfMonSal;
|
||||
}
|
||||
|
||||
public void setTxtNoOfMonSal(String newTxtNoOfMonSal) {
|
||||
this.txtNoOfMonSal = newTxtNoOfMonSal;
|
||||
}
|
||||
|
||||
public String getTxtEligibilityFactor() {
|
||||
return this.txtEligibilityFactor;
|
||||
}
|
||||
|
||||
public void setTxtEligibilityFactor(String newTxtEligibilityFactor) {
|
||||
this.txtEligibilityFactor = newTxtEligibilityFactor;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user