package kr.wisestone.owl.web.form;
|
|
import kr.wisestone.owl.util.ConvertUtil;
|
|
import java.util.Map;
|
|
/**
|
* Created by jeong on 2017-12-30.
|
*/
|
public class DepartmentManageForm {
|
private Long id;
|
private String departmentName;
|
private String departmentDescription;
|
|
public DepartmentManageForm() {
|
}
|
|
public static DepartmentManageForm make(Map<String, Object> params) {
|
return ConvertUtil.convertMapToClass(params, DepartmentManageForm.class);
|
}
|
|
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;
|
}
|
}
|