From 54eee826bbe9f980a7fb65dc5e9ff250eee890fb Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 금, 03 12월 2021 10:40:01 +0900 Subject: [PATCH] 이슈 만들기, 수정 페이지에서 이슈유형 타입 아이디 못 가져오는 오류 수정 --- src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java b/src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java index 010f1e8..815b458 100644 --- a/src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java +++ b/src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java @@ -15,6 +15,7 @@ private String departmentName; private String departmentDescription; private Long departmentCount; + private Long projectId; private List<Long> excludeIds = Lists.newArrayList(); @@ -65,6 +66,14 @@ this.departmentCount = departmentCount; } + public Long getProjectId() { + return projectId; + } + + public void setProjectId(Long projectId) { + this.projectId = projectId; + } + public Integer getPage() { return Page; } -- Gitblit v1.8.0