57 lines
1.1 KiB
Java
57 lines
1.1 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmOrgClassHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String code;
|
|
|
|
private String classificationType;
|
|
|
|
private String scaleId;
|
|
|
|
private String desigId;
|
|
|
|
String orgCodeId;
|
|
|
|
public String getCode() {
|
|
return this.code;
|
|
}
|
|
|
|
public void setCode(String newCode) {
|
|
this.code = newCode;
|
|
}
|
|
|
|
public String getClassificationType() {
|
|
return this.classificationType;
|
|
}
|
|
|
|
public void setClassificationType(String newClassificationType) {
|
|
this.classificationType = newClassificationType;
|
|
}
|
|
|
|
public String getScaleId() {
|
|
return this.scaleId;
|
|
}
|
|
|
|
public void setScaleId(String newScaleId) {
|
|
this.scaleId = newScaleId;
|
|
}
|
|
|
|
public String getDesigId() {
|
|
return this.desigId;
|
|
}
|
|
|
|
public void setDesigId(String newDesigId) {
|
|
this.desigId = newDesigId;
|
|
}
|
|
|
|
public String getOrgCodeId() {
|
|
return this.orgCodeId;
|
|
}
|
|
|
|
public void setOrgCodeId(String newOrgCodeId) {
|
|
this.orgCodeId = newOrgCodeId;
|
|
}
|
|
}
|