OWL ITS + 탐지시스템(인터넷 진흥원)
src/main/java/kr/wisestone/owl/web/form/CustomFieldApiOverlapForm.java
@@ -12,6 +12,7 @@
    private Long id;
    private Long userId;
    private Long issueTypeId;
    private Long projectId;
    private List<Long> customFieldIds;
    public CustomFieldApiOverlapForm(){}
@@ -58,4 +59,18 @@
    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;
    }
}