| | |
| | | private Long id; |
| | | private Long userId; |
| | | private Long issueTypeId; |
| | | private Long projectId; |
| | | private List<Long> customFieldIds; |
| | | |
| | | public CustomFieldApiOverlapForm(){} |
| | |
| | | public void setCustomFieldIds(List<Long> customFieldIds) { |
| | | this.customFieldIds = customFieldIds; |
| | | } |
| | | |
| | | public void addCustomFieldId(Long customFieldId) { |
| | | if (this.customFieldIds != null) { |
| | | this.customFieldIds.add(customFieldId); |
| | | } |
| | | } |
| | | |
| | | public Long getProjectId() { |
| | | return projectId; |
| | | } |
| | | |
| | | public void setProjectId(Long projectId) { |
| | | this.projectId = projectId; |
| | | } |
| | | } |