OWL ITS + 탐지시스템(인터넷 진흥원)
src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java
@@ -59,6 +59,7 @@
    private Pageable downPageable;
    private Boolean allIssue; // 전체이슈 보여주기
    private Long issueTypeId;
    private Boolean parentYN;   //상위이슈만 조회 유무
    public IssueCondition(){}
@@ -219,6 +220,10 @@
            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;
@@ -595,4 +600,12 @@
    public void setIssueTypeId(Long issueTypeId) {
        this.issueTypeId = issueTypeId;
    }
    public Boolean getParentYN() {
        return parentYN;
    }
    public void setParentYN(Boolean parentYN) {
        this.parentYN = parentYN;
    }
}