77 lines
1.5 KiB
Java
77 lines
1.5 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmAppTempHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String templateName;
|
|
|
|
private String obsolete;
|
|
|
|
private String applicableToAll;
|
|
|
|
private String ratingCode;
|
|
|
|
String ratingId;
|
|
|
|
String headerFlag;
|
|
|
|
String statusOfHeader;
|
|
|
|
public String getTemplateName() {
|
|
return this.templateName;
|
|
}
|
|
|
|
public void setTemplateName(String newTemplateName) {
|
|
this.templateName = newTemplateName;
|
|
}
|
|
|
|
public String getObsolete() {
|
|
return this.obsolete;
|
|
}
|
|
|
|
public void setObsolete(String newObsolete) {
|
|
this.obsolete = newObsolete;
|
|
}
|
|
|
|
public String getApplicableToAll() {
|
|
return this.applicableToAll;
|
|
}
|
|
|
|
public void setApplicableToAll(String newApplicableToAll) {
|
|
this.applicableToAll = newApplicableToAll;
|
|
}
|
|
|
|
public String getRatingCode() {
|
|
return this.ratingCode;
|
|
}
|
|
|
|
public void setRatingCode(String newRatingCode) {
|
|
this.ratingCode = newRatingCode;
|
|
}
|
|
|
|
public String getRatingId() {
|
|
return this.ratingId;
|
|
}
|
|
|
|
public void setRatingId(String newRatingId) {
|
|
this.ratingId = newRatingId;
|
|
}
|
|
|
|
public String getHeaderFlag() {
|
|
return this.headerFlag;
|
|
}
|
|
|
|
public void setHeaderFlag(String newHeaderFlag) {
|
|
this.headerFlag = newHeaderFlag;
|
|
}
|
|
|
|
public String getStatusOfHeader() {
|
|
return this.statusOfHeader;
|
|
}
|
|
|
|
public void setStatusOfHeader(String newStatusOfHeader) {
|
|
this.statusOfHeader = newStatusOfHeader;
|
|
}
|
|
}
|