| | |
| | | private Boolean isTree; // 트리구조 모드 일때 |
| | | private Pageable relPageable; |
| | | private Pageable downPageable; |
| | | private Boolean allIssue; // 전체이슈 보여주기 |
| | | private Long issueTypeId; |
| | | private Boolean parentYN; //상위이슈만 조회 유무 |
| | | |
| | | public IssueCondition(){} |
| | | |
| | |
| | | condition.setIssueTypeIds(MapUtil.getLongs(conditions, "issueTypeIds")); |
| | | } |
| | | |
| | | if (MapUtil.getLong(conditions, "issueTypeId") != null) { |
| | | condition.setIssueTypeId(MapUtil.getLong(conditions, "issueTypeId")); |
| | | } |
| | | |
| | | if (MapUtil.getLongs(conditions, "priorityIds") != null) { |
| | | condition.setPriorityIds(MapUtil.getLongs(conditions, "priorityIds")); |
| | | } |
| | |
| | | condition.setTree(MapUtil.getBoolean(conditions, "isTree")); |
| | | } else { |
| | | condition.setTree(false); |
| | | } |
| | | |
| | | if (MapUtil.getBoolean(conditions, "parentYN") != null && MapUtil.getBoolean(conditions, "parentYN")) { |
| | | condition.setParentYN(true); |
| | | } |
| | | |
| | | return condition; |
| | |
| | | public void setDownPageable(Pageable downPageable) { |
| | | this.downPageable = downPageable; |
| | | } |
| | | |
| | | public Boolean getAllIssue() { |
| | | return allIssue; |
| | | } |
| | | |
| | | public void setAllIssue(Boolean allIssue) { |
| | | this.allIssue = allIssue; |
| | | } |
| | | |
| | | public Long getIssueTypeId() { |
| | | return issueTypeId; |
| | | } |
| | | |
| | | public void setIssueTypeId(Long issueTypeId) { |
| | | this.issueTypeId = issueTypeId; |
| | | } |
| | | |
| | | public Boolean getParentYN() { |
| | | return parentYN; |
| | | } |
| | | |
| | | public void setParentYN(Boolean parentYN) { |
| | | this.parentYN = parentYN; |
| | | } |
| | | } |