From aa2a539f31273a8fc2e85e4a29dbce25a19ce4d4 Mon Sep 17 00:00:00 2001
From: jhjang <jhjang@maprex.co.kr>
Date: 금, 10 12월 2021 17:17:09 +0900
Subject: [PATCH] - 트리 형태로 보기 페이지 추가(작업중) - api 이슈 추가시 이슈타입도 구분하도록 수정

---
 src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java b/src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java
index f25688b..c67133a 100644
--- a/src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java
+++ b/src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java
@@ -54,6 +54,7 @@
     private List<Long> excludeIds = Lists.newArrayList();
     private List<Long> myDepartmentIds; // �궡媛� �냽�빐�엳�뒗 遺��꽌 ID
     private Boolean hideIssue;
+    private Boolean isTree; // �듃由ш뎄議� 紐⑤뱶 �씪�븣
 
     public IssueCondition(){}
 
@@ -182,6 +183,10 @@
 
         if (MapUtil.getBoolean(conditions, "hideIssue") != null) {
             condition.setHideIssue(MapUtil.getBoolean(conditions, "hideIssue"));
+        }
+
+        if (MapUtil.getBoolean(conditions, "isTree") != null) {
+            condition.setTree(MapUtil.getBoolean(conditions, "isTree"));
         }
 
         return condition;
@@ -510,4 +515,12 @@
     public void setHideIssue(Boolean hideIssue) {
         this.hideIssue = hideIssue;
     }
+
+    public Boolean getTree() {
+        return isTree;
+    }
+
+    public void setTree(Boolean tree) {
+        isTree = tree;
+    }
 }

--
Gitblit v1.8.0