From 6ae9f3ab6d498f7a4d72c3fbbe8b90e6358f389b Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 21 12월 2021 13:31:54 +0900 Subject: [PATCH] 사용자 정의필드 시간형태 등호 변경 --- src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java | 42 +++++++++++++++++++++++++++++++++++++++++- 1 files changed, 41 insertions(+), 1 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..c81f030 100644 --- a/src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java +++ b/src/main/java/kr/wisestone/owl/web/condition/DepartmentCondition.java @@ -15,10 +15,14 @@ private String departmentName; private String departmentDescription; private Long departmentCount; + private Long projectId; private List<Long> excludeIds = Lists.newArrayList(); - private List<Long> departmentIds = Lists.newArrayList(); + + private Long issueTypeId; + private Integer issueStatusId; + private Long workflowId; private Integer Page; private Integer PageSize; @@ -28,6 +32,10 @@ if (MapUtil.getStrings(departmentConditions, "excludeIds") != null) { condition.setExcludeIds(MapUtil.getLongs(departmentConditions, "excludeIds")); + } + + if (MapUtil.getLong(departmentConditions, "issueTypeId") != null) { + condition.setIssueTypeId(MapUtil.getLong(departmentConditions, "issueTypeId")); } return condition; @@ -65,6 +73,14 @@ this.departmentCount = departmentCount; } + public Long getProjectId() { + return projectId; + } + + public void setProjectId(Long projectId) { + this.projectId = projectId; + } + public Integer getPage() { return Page; } @@ -96,4 +112,28 @@ public void setExcludeIds(List<Long> excludeIds) { this.excludeIds = excludeIds; } + + public Long getIssueTypeId() { + return issueTypeId; + } + + public void setIssueTypeId(Long issueTypeId) { + this.issueTypeId = issueTypeId; + } + + public Integer getIssueStatusId() { + return issueStatusId; + } + + public void setIssueStatusId(Integer issueStatusId) { + this.issueStatusId = issueStatusId; + } + + public Long getWorkflowId() { + return workflowId; + } + + public void setWorkflowId(Long workflowId) { + this.workflowId = workflowId; + } } -- Gitblit v1.8.0