| | |
| | | private List<Long> priorityIds = Lists.newArrayList(); |
| | | private List<Long> severityIds = Lists.newArrayList(); |
| | | private List<Long> userIds = Lists.newArrayList(); |
| | | private List<Long> departmentIds = Lists.newArrayList(); |
| | | private List<Long> registerIds = Lists.newArrayList(); |
| | | private List<String> issueIds = Lists.newArrayList(); // 이슈 목록 검색에서 사용자 정의 필드로 1차 검색한 결과를 담을때 사용 |
| | | private List<Map<String, Object>> issueCustomFields = Lists.newArrayList(); |
| | |
| | | |
| | | if (MapUtil.getLongs(conditions, "userIds") != null) { |
| | | condition.setUserIds(MapUtil.getLongs(conditions, "userIds")); |
| | | } |
| | | |
| | | if (MapUtil.getLongs(conditions, "departmentIds") != null) { |
| | | condition.setDepartmentIds(MapUtil.getLongs(conditions, "departmentIds")); |
| | | } |
| | | |
| | | if (MapUtil.getLongs(conditions, "registerIds") != null) { |
| | |
| | | this.userIds = userIds; |
| | | } |
| | | |
| | | public List<Long> getDepartmentIds() { |
| | | return departmentIds; |
| | | } |
| | | |
| | | public void setDepartmentIds(List<Long> departmentIds) { |
| | | this.departmentIds = departmentIds; |
| | | } |
| | | |
| | | public List<Long> getRegisterIds() { |
| | | return registerIds; |
| | | } |