OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-13 4545664bbece1b1b185945376b344b1660669a53
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package kr.wisestone.owl.vo;
 
import java.util.Date;
 
public class IssueApiDefaultVo extends BaseVo {
 
    private Long id;
    private Long userId;
    private Long issueTypeId;
    private Long issueStatusId;
    private Long projectId;
    private Long priorityId;
    private Long severityId;
    private String title;
    private String description;
    private Long reverseIndex;
    private Long issue_number;
    private Date start_date;
    private Date complete_date;
    private ProjectVo projectVo;
 
    public IssueApiDefaultVo() {
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getIssueTypeId() {
        return issueTypeId;
    }
 
    public void setIssueTypeId(Long issueTypeId) {
        this.issueTypeId = issueTypeId;
    }
 
    public Long getIssueStatusId() {
        return issueStatusId;
    }
 
    public void setIssueStatusId(Long issueStatusId) {
        this.issueStatusId = issueStatusId;
    }
 
    public Long getProjectId() {
        return projectId;
    }
 
    public void setProjectId(Long projectId) {
        this.projectId = projectId;
    }
 
    public Long getPriorityId() {
        return priorityId;
    }
 
    public void setPriorityId(Long priorityId) {
        this.priorityId = priorityId;
    }
 
    public Long getSeverityId() {
        return severityId;
    }
 
    public void setSeverityId(Long severityId) {
        this.severityId = severityId;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public Long getReverseIndex() {
        return reverseIndex;
    }
 
    public void setReverseIndex(Long reverseIndex) {
        this.reverseIndex = reverseIndex;
    }
 
    public Long getIssue_number() {
        return issue_number;
    }
 
    public void setIssue_number(Long issue_number) {
        this.issue_number = issue_number;
    }
 
    public Date getStart_date() {
        return start_date;
    }
 
    public void setStart_date(Date start_date) {
        this.start_date = start_date;
    }
 
    public Date getComplete_date() {
        return complete_date;
    }
 
    public void setComplete_date(Date complete_date) {
        this.complete_date = complete_date;
    }
 
    public ProjectVo getProjectVo() {
        return projectVo;
    }
 
    public void setProjectVo(ProjectVo projectVo) {
        this.projectVo = projectVo;
    }
}