package com.gkhy.safePlatform.account.rpc.apimodel.model.resp;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class DepRPCRespDTO implements Serializable {
|
|
private static final long serialVersionUID = -7301681475055521523L;
|
|
private Long depId;
|
|
private String depName;
|
|
private String depInfo;
|
|
private String depCode;
|
|
private Byte depLevel;
|
|
private String depLevelDesc;
|
|
private Byte status;
|
|
private String statusDesc;
|
|
private Long parentDepId;
|
|
private List<DepRPCRespDTO> children;
|
|
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 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 Long getParentDepId() {
|
return parentDepId;
|
}
|
|
public void setParentDepId(Long parentDepId) {
|
this.parentDepId = parentDepId;
|
}
|
|
public List<DepRPCRespDTO> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<DepRPCRespDTO> children) {
|
this.children = children;
|
}
|
|
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;
|
}
|
}
|