package kr.wisestone.owl.vo;
|
|
/**
|
* Created by wyu on 2021-11-05.
|
*/
|
public class DepartmentVo extends BaseVo{
|
|
private Long id;
|
private String departmentName;
|
private String departmentDescription;
|
private String byName;
|
|
private Long departmentCount;
|
public DepartmentVo() {}
|
|
public DepartmentVo(Long id, String departmentName, String departmentDescription) {
|
this.id = id;
|
this.departmentName = departmentName;
|
this.departmentDescription = departmentDescription;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getDepartmentName() {
|
return departmentName;
|
}
|
|
public void setDepartmentName(String departmentName) {
|
this.departmentName = departmentName;
|
}
|
|
public String getDepartmentDescription() {
|
return departmentDescription;
|
}
|
|
public void setDepartmentDescription(String departmentDescription) {
|
this.departmentDescription = departmentDescription;
|
}
|
|
public Long getDepartmentCount() {
|
return departmentCount;
|
}
|
|
public void setDepartmentCount(Long departmentCount) {
|
this.departmentCount = departmentCount;
|
}
|
|
public String getByName() {
|
return byName;
|
}
|
|
public void setByName(String byName) {
|
this.byName = byName;
|
}
|
}
|