OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-03-17 916a3cbabe4e50062fce61ff6f2f5d46c05dfbd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package kr.wisestone.owl.web.condition;
 
import com.google.common.collect.Lists;
import kr.wisestone.owl.util.ConvertUtil;
 
import java.util.List;
import java.util.Map;
 
/**
 * Created by wisestone on 2018-02-27.
 */
public class AttachedFileCondition {
    private Long workspaceId;
    private Long issueId;
    private List<Long> issueIds = Lists.newArrayList();
 
    public AttachedFileCondition(){}
 
    public static AttachedFileCondition make(Map<String, Object> conditions) {
        AttachedFileCondition condition = ConvertUtil.convertMapToClass(conditions, AttachedFileCondition.class);
        return condition;
    }
 
    public Long getWorkspaceId() {
        return workspaceId;
    }
 
    public void setWorkspaceId(Long workspaceId) {
        this.workspaceId = workspaceId;
    }
 
    public Long getIssueId() {
        return issueId;
    }
 
    public void setIssueId(Long issueId) {
        this.issueId = issueId;
    }
 
    public List<Long> getIssueIds() {
        return issueIds;
    }
 
    public void setIssueIds(List<Long> issueIds) {
        this.issueIds = issueIds;
    }
}