package com.gkhy.safePlatform.account.rpc.apimodel.model.resp;
|
|
import java.io.Serializable;
|
|
public class DepInfoRPCRespDTO implements Serializable {
|
|
private static final long serialVersionUID = 2247465593908036822L;
|
|
private Long depId;
|
|
private String depName;
|
|
private String depInfo;
|
|
private Byte depLevel;
|
|
private String depCode;
|
|
private String depLevelDesc;
|
|
private Byte status;
|
|
private String statusDesc;
|
|
private Long parentDepId;
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
public String getDepInfo() {
|
return depInfo;
|
}
|
|
public void setDepInfo(String depInfo) {
|
this.depInfo = depInfo;
|
}
|
|
public Long getParentDepId() {
|
return parentDepId;
|
}
|
|
public void setParentDepId(Long parentDepId) {
|
this.parentDepId = parentDepId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public String getStatusDesc() {
|
return statusDesc;
|
}
|
|
public void setStatusDesc(String statusDesc) {
|
this.statusDesc = statusDesc;
|
}
|
|
public Byte getDepLevel() {
|
return depLevel;
|
}
|
|
public void setDepLevel(Byte depLevel) {
|
this.depLevel = depLevel;
|
}
|
|
public String getDepLevelDesc() {
|
return depLevelDesc;
|
}
|
|
public void setDepLevelDesc(String depLevelDesc) {
|
this.depLevelDesc = depLevelDesc;
|
}
|
|
public String getDepCode() {
|
return depCode;
|
}
|
|
public void setDepCode(String depCode) {
|
this.depCode = depCode;
|
}
|
}
|