27 lines
625 B
Java
27 lines
625 B
Java
package WEB-INF.classes.wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmAppraisalTemplateGoalDtlBean extends BaseDetailBean implements Serializable {
|
|
String txtSlNo;
|
|
|
|
String txtGoalDescription;
|
|
|
|
public String getTxtSlNo() {
|
|
return this.txtSlNo;
|
|
}
|
|
|
|
public void setTxtSlNo(String newTxtSlNo) {
|
|
this.txtSlNo = newTxtSlNo;
|
|
}
|
|
|
|
public String getTxtGoalDescription() {
|
|
return this.txtGoalDescription;
|
|
}
|
|
|
|
public void setTxtGoalDescription(String newTxtGoalDescription) {
|
|
this.txtGoalDescription = newTxtGoalDescription;
|
|
}
|
|
}
|