package kr.wisestone.owl.web.form;
|
|
import kr.wisestone.owl.util.ConvertUtil;
|
|
import java.util.Map;
|
|
/**
|
* Created by wisestone on 2018-10-02.
|
*/
|
public class UserWorkspaceForm {
|
private Long id;
|
private Boolean useYn;
|
private Long levelId;
|
private Long departmentId;
|
|
public UserWorkspaceForm(){}
|
|
public static UserWorkspaceForm make(Map<String, Object> params) {
|
UserWorkspaceForm form = ConvertUtil.convertMapToClass(params, UserWorkspaceForm.class);
|
|
return form;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Boolean getUseYn() {
|
return useYn;
|
}
|
|
public void setUseYn(Boolean useYn) {
|
this.useYn = useYn;
|
}
|
|
public Long getLevelId() {
|
return levelId;
|
}
|
|
public void setLevelId(Long levelId) {
|
this.levelId = levelId;
|
}
|
|
public Long getDepartmentId() {
|
return departmentId;
|
}
|
|
public void setDepartmentId(Long departmentId) {
|
this.departmentId = departmentId;
|
}
|
}
|