package kr.wisestone.owl.vo;
|
|
/**
|
* Created by jeong on 2017-08-02.
|
*/
|
public class DepartmentManageVo extends BaseVo{
|
|
private Long id;
|
private String departmentName;
|
private String departmentDescription;
|
|
public DepartmentManageVo() {
|
}
|
|
public DepartmentManageVo(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;
|
}
|
}
|