OWL ITS + 탐지시스템(인터넷 진흥원)
minhee
2022-02-21 95f9639088ab6a5615aa348eb206d14541782000
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
package kr.wisestone.owl.domain;
 
import jdk.nashorn.internal.objects.annotations.Getter;
import jdk.nashorn.internal.objects.annotations.Setter;
import kr.wisestone.owl.domain.enumType.CompanyFieldCategoryType;
import kr.wisestone.owl.domain.enumType.IssueStatusType;
 
import javax.persistence.*;
import java.io.Serializable;
@Entity
public class CompanyFieldCategory extends BaseEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String typeCategory;
    private Long parentId;
    private String useValue;
    private String description;
 
    @Enumerated(EnumType.STRING)
    private CompanyFieldCategoryType companyFieldCategoryType;
 
    public CompanyFieldCategory() {}
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTypeCategory() {
        return typeCategory;
    }
 
    public void setTypeCategory(String typeCategory) {
        this.typeCategory = typeCategory;
    }
 
    public Long getParentId() {
        return parentId;
    }
 
    public void setParentId(Long parentId) {
        this.parentId = parentId;
    }
 
    public String getUseValue() {
        return useValue;
    }
 
    public void setUseValue(String useValue) {
        this.useValue = useValue;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public CompanyFieldCategoryType getCompanyFieldCategoryType() {
        return companyFieldCategoryType;
    }
 
    public void setCompanyFieldCategoryType(CompanyFieldCategoryType companyFieldCategoryType) {
        this.companyFieldCategoryType = companyFieldCategoryType;
    }
}