package com.gkhy.safePlatform.account.model.dto.resp;
|
|
import java.io.Serializable;
|
|
public class UserDepartmentRespDTO implements Serializable {
|
|
private static final long serialVersionUID = 2730453134686774107L;
|
|
private Long depId;
|
|
private String depName;
|
|
private Byte depLevel;
|
|
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 Byte getDepLevel() {
|
return depLevel;
|
}
|
|
public void setDepLevel(Byte depLevel) {
|
this.depLevel = depLevel;
|
}
|
}
|