67 lines
1.5 KiB
Java
67 lines
1.5 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmPrmKPAPoswiseDtlBean extends BaseDetailBean implements Serializable {
|
|
String txtKPAGroupId;
|
|
|
|
String txtKPAGroupCode;
|
|
|
|
String txtKPAGroupDesc;
|
|
|
|
String txtReqAvgRating;
|
|
|
|
private String txtPromKPARatingHdrId;
|
|
|
|
private String disabbutForPos;
|
|
|
|
public String getTxtKPAGroupId() {
|
|
return this.txtKPAGroupId;
|
|
}
|
|
|
|
public void setTxtKPAGroupId(String newTxtKPAGroupId) {
|
|
this.txtKPAGroupId = newTxtKPAGroupId;
|
|
}
|
|
|
|
public String getTxtKPAGroupCode() {
|
|
return this.txtKPAGroupCode;
|
|
}
|
|
|
|
public void setTxtKPAGroupCode(String newTxtKPAGroupCode) {
|
|
this.txtKPAGroupCode = newTxtKPAGroupCode;
|
|
}
|
|
|
|
public String getTxtKPAGroupDesc() {
|
|
return this.txtKPAGroupDesc;
|
|
}
|
|
|
|
public void setTxtKPAGroupDesc(String newTxtKPAGroupDesc) {
|
|
this.txtKPAGroupDesc = newTxtKPAGroupDesc;
|
|
}
|
|
|
|
public String getTxtReqAvgRating() {
|
|
return this.txtReqAvgRating;
|
|
}
|
|
|
|
public void setTxtReqAvgRating(String newTxtReqAvgRating) {
|
|
this.txtReqAvgRating = newTxtReqAvgRating;
|
|
}
|
|
|
|
public String getTxtPromKPARatingHdrId() {
|
|
return this.txtPromKPARatingHdrId;
|
|
}
|
|
|
|
public void setTxtPromKPARatingHdrId(String newTxtPromKPARatingHdrId) {
|
|
this.txtPromKPARatingHdrId = newTxtPromKPARatingHdrId;
|
|
}
|
|
|
|
public String getDisabbutForPos() {
|
|
return this.disabbutForPos;
|
|
}
|
|
|
|
public void setDisabbutForPos(String newDisabbutForPos) {
|
|
this.disabbutForPos = newDisabbutForPos;
|
|
}
|
|
}
|