107 lines
2.0 KiB
Java
107 lines
2.0 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmOrgIncrementHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String startDate;
|
|
|
|
private String endDate;
|
|
|
|
private String clsHdr;
|
|
|
|
private String clsHdrDesc;
|
|
|
|
private String clsDtl;
|
|
|
|
private String clsDtlDesc;
|
|
|
|
private String ratingCode;
|
|
|
|
private String ratingHdrId;
|
|
|
|
private String clsHdrId;
|
|
|
|
private String clsDtlId;
|
|
|
|
public String getStartDate() {
|
|
return this.startDate;
|
|
}
|
|
|
|
public void setStartDate(String newStartDate) {
|
|
this.startDate = newStartDate;
|
|
}
|
|
|
|
public String getEndDate() {
|
|
return this.endDate;
|
|
}
|
|
|
|
public void setEndDate(String newEndDate) {
|
|
this.endDate = newEndDate;
|
|
}
|
|
|
|
public String getClsHdr() {
|
|
return this.clsHdr;
|
|
}
|
|
|
|
public void setClsHdr(String newClsHdr) {
|
|
this.clsHdr = newClsHdr;
|
|
}
|
|
|
|
public String getClsHdrDesc() {
|
|
return this.clsHdrDesc;
|
|
}
|
|
|
|
public void setClsHdrDesc(String newClsHdrDesc) {
|
|
this.clsHdrDesc = newClsHdrDesc;
|
|
}
|
|
|
|
public String getClsDtl() {
|
|
return this.clsDtl;
|
|
}
|
|
|
|
public void setClsDtl(String newClsDtl) {
|
|
this.clsDtl = newClsDtl;
|
|
}
|
|
|
|
public String getClsDtlDesc() {
|
|
return this.clsDtlDesc;
|
|
}
|
|
|
|
public void setClsDtlDesc(String newClsDtlDesc) {
|
|
this.clsDtlDesc = newClsDtlDesc;
|
|
}
|
|
|
|
public String getRatingCode() {
|
|
return this.ratingCode;
|
|
}
|
|
|
|
public void setRatingCode(String newRatingCode) {
|
|
this.ratingCode = newRatingCode;
|
|
}
|
|
|
|
public String getRatingHdrId() {
|
|
return this.ratingHdrId;
|
|
}
|
|
|
|
public void setRatingHdrId(String newRatingHdrId) {
|
|
this.ratingHdrId = newRatingHdrId;
|
|
}
|
|
|
|
public String getClsHdrId() {
|
|
return this.clsHdrId;
|
|
}
|
|
|
|
public void setClsHdrId(String newClsHdrId) {
|
|
this.clsHdrId = newClsHdrId;
|
|
}
|
|
|
|
public String getClsDtlId() {
|
|
return this.clsDtlId;
|
|
}
|
|
|
|
public void setClsDtlId(String newClsDtlId) {
|
|
this.clsDtlId = newClsDtlId;
|
|
}
|
|
}
|