first commit
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmPrmExperienceDtlBean extends BaseDetailBean implements Serializable {
|
||||
String startField;
|
||||
|
||||
String endField;
|
||||
|
||||
String txtAccBasis;
|
||||
|
||||
String txtMonthsExp;
|
||||
|
||||
String txtPointsAwarded;
|
||||
|
||||
public String getStartField() {
|
||||
return this.startField;
|
||||
}
|
||||
|
||||
public void setStartField(String newStartField) {
|
||||
this.startField = newStartField;
|
||||
}
|
||||
|
||||
public String getEndField() {
|
||||
return this.endField;
|
||||
}
|
||||
|
||||
public void setEndField(String newEndField) {
|
||||
this.endField = newEndField;
|
||||
}
|
||||
|
||||
public String getTxtAccBasis() {
|
||||
return this.txtAccBasis;
|
||||
}
|
||||
|
||||
public void setTxtAccBasis(String newTxtAccBasis) {
|
||||
this.txtAccBasis = newTxtAccBasis;
|
||||
}
|
||||
|
||||
public String getTxtMonthsExp() {
|
||||
return this.txtMonthsExp;
|
||||
}
|
||||
|
||||
public void setTxtMonthsExp(String newTxtMonthsExp) {
|
||||
this.txtMonthsExp = newTxtMonthsExp;
|
||||
}
|
||||
|
||||
public String getTxtPointsAwarded() {
|
||||
return this.txtPointsAwarded;
|
||||
}
|
||||
|
||||
public void setTxtPointsAwarded(String newTxtPointsAwarded) {
|
||||
this.txtPointsAwarded = newTxtPointsAwarded;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user