167 lines
4.0 KiB
Java
167 lines
4.0 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmAppraisalTemplateSecDtlBean extends BaseDetailBean implements Serializable {
|
|
String txtSrlNo;
|
|
|
|
String txtSectionCode;
|
|
|
|
String txtAppraiserType;
|
|
|
|
String txtTemplateRemarks;
|
|
|
|
String txtParentSection;
|
|
|
|
String txtSectionWeightage;
|
|
|
|
String txtParentSecId;
|
|
|
|
String txtRatingReqd;
|
|
|
|
String disabtxtSrlNo;
|
|
|
|
String disabtxtSectionCode;
|
|
|
|
String disabbutParentSecCode;
|
|
|
|
String disabtxtSectionWeightage;
|
|
|
|
String disabtxtAppraiserType;
|
|
|
|
String disabtxtTemplateRemarks;
|
|
|
|
String disabtxtRatingReqd;
|
|
|
|
String disabtxtParentSection;
|
|
|
|
public String getTxtSrlNo() {
|
|
return this.txtSrlNo;
|
|
}
|
|
|
|
public void setTxtSrlNo(String newTxtSrlNo) {
|
|
this.txtSrlNo = newTxtSrlNo;
|
|
}
|
|
|
|
public String getTxtSectionCode() {
|
|
return this.txtSectionCode;
|
|
}
|
|
|
|
public void setTxtSectionCode(String newTxtSectionCode) {
|
|
this.txtSectionCode = newTxtSectionCode;
|
|
}
|
|
|
|
public String getTxtAppraiserType() {
|
|
return this.txtAppraiserType;
|
|
}
|
|
|
|
public void setTxtAppraiserType(String newTxtAppraiserType) {
|
|
this.txtAppraiserType = newTxtAppraiserType;
|
|
}
|
|
|
|
public String getTxtTemplateRemarks() {
|
|
return this.txtTemplateRemarks;
|
|
}
|
|
|
|
public void setTxtTemplateRemarks(String newTxtTemplateRemarks) {
|
|
this.txtTemplateRemarks = newTxtTemplateRemarks;
|
|
}
|
|
|
|
public String getTxtParentSection() {
|
|
return this.txtParentSection;
|
|
}
|
|
|
|
public void setTxtParentSection(String newTxtParentSection) {
|
|
this.txtParentSection = newTxtParentSection;
|
|
}
|
|
|
|
public String getTxtSectionWeightage() {
|
|
return this.txtSectionWeightage;
|
|
}
|
|
|
|
public void setTxtSectionWeightage(String newTxtSectionWeightage) {
|
|
this.txtSectionWeightage = newTxtSectionWeightage;
|
|
}
|
|
|
|
public String getTxtParentSecId() {
|
|
return this.txtParentSecId;
|
|
}
|
|
|
|
public void setTxtParentSecId(String newTxtParentSecId) {
|
|
this.txtParentSecId = newTxtParentSecId;
|
|
}
|
|
|
|
public String getTxtRatingReqd() {
|
|
return this.txtRatingReqd;
|
|
}
|
|
|
|
public void setTxtRatingReqd(String newTxtRatingReqd) {
|
|
this.txtRatingReqd = newTxtRatingReqd;
|
|
}
|
|
|
|
public String getDisabtxtSrlNo() {
|
|
return this.disabtxtSrlNo;
|
|
}
|
|
|
|
public void setDisabtxtSrlNo(String newDisabtxtSrlNo) {
|
|
this.disabtxtSrlNo = newDisabtxtSrlNo;
|
|
}
|
|
|
|
public String getDisabtxtSectionCode() {
|
|
return this.disabtxtSectionCode;
|
|
}
|
|
|
|
public void setDisabtxtSectionCode(String newDisabtxtSectionCode) {
|
|
this.disabtxtSectionCode = newDisabtxtSectionCode;
|
|
}
|
|
|
|
public String getDisabbutParentSecCode() {
|
|
return this.disabbutParentSecCode;
|
|
}
|
|
|
|
public void setDisabbutParentSecCode(String newDisabbutParentSecCode) {
|
|
this.disabbutParentSecCode = newDisabbutParentSecCode;
|
|
}
|
|
|
|
public String getDisabtxtSectionWeightage() {
|
|
return this.disabtxtSectionWeightage;
|
|
}
|
|
|
|
public void setDisabtxtSectionWeightage(String newDisabtxtSectionWeightage) {
|
|
this.disabtxtSectionWeightage = newDisabtxtSectionWeightage;
|
|
}
|
|
|
|
public String getDisabtxtAppraiserType() {
|
|
return this.disabtxtAppraiserType;
|
|
}
|
|
|
|
public void setDisabtxtAppraiserType(String newDisabtxtAppraiserType) {
|
|
this.disabtxtAppraiserType = newDisabtxtAppraiserType;
|
|
}
|
|
|
|
public String getDisabtxtTemplateRemarks() {
|
|
return this.disabtxtTemplateRemarks;
|
|
}
|
|
|
|
public void setDisabtxtTemplateRemarks(String newDisabtxtTemplateRemarks) {
|
|
this.disabtxtTemplateRemarks = newDisabtxtTemplateRemarks;
|
|
}
|
|
|
|
public String getDisabtxtRatingReqd() {
|
|
return this.disabtxtRatingReqd;
|
|
}
|
|
|
|
public void setDisabtxtRatingReqd(String newDisabtxtRatingReqd) {
|
|
this.disabtxtRatingReqd = newDisabtxtRatingReqd;
|
|
}
|
|
|
|
public String getDisabtxtParentSection() {
|
|
return this.disabtxtParentSection;
|
|
}
|
|
|
|
public void setDisabtxtParentSection(String newDisabtxtParentSection) {
|
|
this.disabtxtParentSection = newDisabtxtParentSection;
|
|
}
|
|
}
|