69 lines
1.5 KiB
Java
69 lines
1.5 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmSepCatMstHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String separationCode;
|
|
|
|
private String separationCodeId;
|
|
|
|
private String description;
|
|
|
|
private String noticePeriod;
|
|
|
|
private String remarks;
|
|
|
|
String separationType;
|
|
|
|
String disabseparationType;
|
|
|
|
public String getDescription() {
|
|
return this.description;
|
|
}
|
|
|
|
public void setDescription(String newDescription) {
|
|
this.description = newDescription;
|
|
}
|
|
|
|
public String getNoticePeriod() {
|
|
return this.noticePeriod;
|
|
}
|
|
|
|
public void setNoticePeriod(String newNoticePeriod) {
|
|
this.noticePeriod = newNoticePeriod;
|
|
}
|
|
|
|
public String getRemarks() {
|
|
return this.remarks;
|
|
}
|
|
|
|
public void setRemarks(String newRemarks) {
|
|
this.remarks = newRemarks;
|
|
}
|
|
|
|
public String getSeparationCode() {
|
|
return this.separationCode;
|
|
}
|
|
|
|
public void setSeparationCode(String newSeparationCode) {
|
|
this.separationCode = newSeparationCode;
|
|
}
|
|
|
|
public String getSeparationType() {
|
|
return this.separationType;
|
|
}
|
|
|
|
public void setSeparationType(String newSeparationType) {
|
|
this.separationType = newSeparationType;
|
|
}
|
|
|
|
public String getDisabseparationType() {
|
|
return this.disabseparationType;
|
|
}
|
|
|
|
public void setDisabseparationType(String newDisabseparationType) {
|
|
this.disabseparationType = newDisabseparationType;
|
|
}
|
|
}
|