first commit
This commit is contained in:
106
hrmsEjb/wenrgise/hrms/bean/HrmOrgIncrementHdrBean.java
Normal file
106
hrmsEjb/wenrgise/hrms/bean/HrmOrgIncrementHdrBean.java
Normal file
@@ -0,0 +1,106 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user