47 lines
1.0 KiB
Java
47 lines
1.0 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmOrgRatingMstDtlBean extends BaseDetailBean implements Serializable {
|
|
String txtRatingFrom;
|
|
|
|
String txtRatingTo;
|
|
|
|
String txtRatingGrade;
|
|
|
|
String txtDescription;
|
|
|
|
public String getTxtRatingFrom() {
|
|
return this.txtRatingFrom;
|
|
}
|
|
|
|
public void setTxtRatingFrom(String newTxtRatingFrom) {
|
|
this.txtRatingFrom = newTxtRatingFrom;
|
|
}
|
|
|
|
public String getTxtRatingTo() {
|
|
return this.txtRatingTo;
|
|
}
|
|
|
|
public void setTxtRatingTo(String newTxtRatingTo) {
|
|
this.txtRatingTo = newTxtRatingTo;
|
|
}
|
|
|
|
public String getTxtRatingGrade() {
|
|
return this.txtRatingGrade;
|
|
}
|
|
|
|
public void setTxtRatingGrade(String newTxtRatingGrade) {
|
|
this.txtRatingGrade = newTxtRatingGrade;
|
|
}
|
|
|
|
public String getTxtDescription() {
|
|
return this.txtDescription;
|
|
}
|
|
|
|
public void setTxtDescription(String newTxtDescription) {
|
|
this.txtDescription = newTxtDescription;
|
|
}
|
|
}
|