From d438f9c81cffd2e2cbec48150b43a5a89c9ab749 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 수, 16 2월 2022 15:56:56 +0900
Subject: [PATCH] - 하위이슈 직접 생성 시 프로젝트 변경 못하도록 수정 - 연관이슈 직접 생성 시 프로젝트 변경 할 경우 이슈타입도 변경 되도록 수정

---
 src/main/java/kr/wisestone/owl/vo/UserVo.java |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/main/java/kr/wisestone/owl/vo/UserVo.java b/src/main/java/kr/wisestone/owl/vo/UserVo.java
index aedac75..e631f76 100644
--- a/src/main/java/kr/wisestone/owl/vo/UserVo.java
+++ b/src/main/java/kr/wisestone/owl/vo/UserVo.java
@@ -22,6 +22,8 @@
     private Long lastProjectId;
     private Long lastIssueTypeId;
     private Long departmentId;
+    private String levelName;
+    private List<DepartmentVo> departmentVos = Lists.newArrayList();
     private Boolean userSocialLogin = Boolean.FALSE;
     private List<ProjectVo> projectVos = Lists.newArrayList();
     private String reservationNotifyTime;
@@ -214,4 +216,20 @@
     public void setProjectManagerYN(Boolean projectManagerYN) {
         this.projectManagerYN = projectManagerYN;
     }
+
+    public String getLevelName() {
+        return levelName;
+    }
+
+    public void setLevelName(String levelName) {
+        this.levelName = levelName;
+    }
+
+    public List<DepartmentVo> getDepartmentVos() {
+        return departmentVos;
+    }
+
+    public void setDepartmentVos(List<DepartmentVo> departmentVos) {
+        this.departmentVos = departmentVos;
+    }
 }

--
Gitblit v1.8.0