| | |
| | | package kr.wisestone.owl.web.condition; |
| | | |
| | | import com.google.common.collect.Lists; |
| | | import kr.wisestone.owl.util.ConvertUtil; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | private String departmentDescription; |
| | | private Long departmentCount; |
| | | |
| | | private List<Long> departmentIds = Lists.newArrayList(); |
| | | |
| | | private Integer Page; |
| | | private Integer PageSize; |
| | | |
| | | public static DepartmentCondition make(Map<String, Object> departmentManageConditions) { |
| | | return ConvertUtil.convertMapToClass(departmentManageConditions, DepartmentCondition.class); |
| | | public static DepartmentCondition make(Map<String, Object> departmentConditions) { |
| | | return ConvertUtil.convertMapToClass(departmentConditions, DepartmentCondition.class); |
| | | } |
| | | |
| | | public Long getId() { |
| | |
| | | public void setPageSize(Integer pageSize) { |
| | | PageSize = pageSize; |
| | | } |
| | | |
| | | public List<Long> getDepartmentIds() { |
| | | return departmentIds; |
| | | } |
| | | |
| | | public void setDepartmentIds(List<Long> departmentIds) { |
| | | this.departmentIds = departmentIds; |
| | | } |
| | | } |