| | |
| | | private List<Long> departmentIds = Lists.newArrayList(); |
| | | |
| | | private Long issueTypeId; |
| | | private Integer issueStatusId; |
| | | private Long workflowId; |
| | | |
| | | private Integer Page; |
| | | private Integer PageSize; |
| | |
| | | |
| | | 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; |
| | |
| | | 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; |
| | | } |
| | | } |