From 4912d3fca1b8d41c4033cc3d0e484d43b4797383 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 금, 10 12월 2021 18:58:16 +0900
Subject: [PATCH] 업체정보 메시지 수정

---
 src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java |   29 ++++++++++++++++++++++++++++-
 1 files changed, 28 insertions(+), 1 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 9ba5dfc..c67133a 100644
--- a/src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java
+++ b/src/main/java/kr/wisestone/owl/web/condition/IssueCondition.java
@@ -34,6 +34,7 @@
     private Long workspaceId;
     private String projectType;
     private String deep;
+    private String isApi;
     private Long parentIssueId;     // �긽�쐞 �씪媛�
     private String useValue;
     private List<Long> projectIds = Lists.newArrayList();
@@ -53,8 +54,14 @@
     private List<Long> excludeIds = Lists.newArrayList();
     private List<Long> myDepartmentIds; // �궡媛� �냽�빐�엳�뒗 遺��꽌 ID
     private Boolean hideIssue;
+    private Boolean isTree; // �듃由ш뎄議� 紐⑤뱶 �씪�븣
 
     public IssueCondition(){}
+
+    public IssueCondition(Long issueId, Long parentIssueId){
+        this.id = issueId;
+        this.parentIssueId = parentIssueId;
+    }
     //  ���떆蹂대뱶 �쐞湲곌�由� �쐞�젽�뿉�꽌 �궗�슜
     public IssueCondition(List<String> issueIds){
         this.issueIds = issueIds;
@@ -174,8 +181,12 @@
             condition.setId(MapUtil.getLong(conditions, "issueId"));
         }
 
-        if (MapUtil.getBoolean(conditions, "hideIssue")) {
+        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;
@@ -299,6 +310,14 @@
 
     public void setDeep(String deep) {
         this.deep = deep;
+    }
+
+    public String getIsApi() {
+        return isApi;
+    }
+
+    public void setIsApi(String isApi) {
+        this.isApi = isApi;
     }
 
     public List<Long> getProjectIds() {
@@ -496,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