| | |
| | | private List<String> roleTypes = Lists.newArrayList(); // 프로젝트 관리자, 일반 참여자를 구분해서 가져온다. |
| | | private List<Long> excludeIds = Lists.newArrayList(); |
| | | private List<Long> userIds = Lists.newArrayList(); |
| | | private List<Long> departmentIds = Lists.newArrayList(); |
| | | |
| | | public ProjectCondition(){} |
| | | |
| | |
| | | |
| | | if (MapUtil.getLongs(conditions, "userIds") != null) { |
| | | condition.setUserIds(MapUtil.getLongs(conditions, "userIds")); |
| | | } |
| | | |
| | | if (MapUtil.getLongs(conditions, "departmentIds") != null) { |
| | | condition.setDepartmentIds(MapUtil.getLongs(conditions, "departmentIds")); |
| | | } |
| | | |
| | | return condition; |
| | |
| | | public void setWorkspaceManager(Boolean workspaceManager) { |
| | | this.workspaceManager = workspaceManager; |
| | | } |
| | | |
| | | public List<Long> getDepartmentIds() { |
| | | return departmentIds; |
| | | } |
| | | |
| | | public void setDepartmentIds(List<Long> departmentIds) { |
| | | this.departmentIds = departmentIds; |
| | | } |
| | | } |