Project

General

Profile

1 50613 konstantin
package eu.dnetlib.uoaadmintools.entities;
2
3
import com.fasterxml.jackson.annotation.JsonProperty;
4
import org.springframework.data.annotation.Id;
5
6
public class DivHelpContent {
7
    @Id
8
    @JsonProperty("_id")
9
    private String id;
10
11
    private String divId;
12 51340 konstantin
    private String community;
13 50613 konstantin
    private String content;
14
    private boolean isActive = true;
15
16
    public DivHelpContent() {
17
    }
18
19 53555 konstantin
    public DivHelpContent(String divId, String community, String content, boolean isActive) {
20
        this.divId = divId;
21
        this.community = community;
22
        this.content = content;
23
        this.isActive = isActive;
24
    }
25
26 50613 konstantin
    public String getId() {
27
        return id;
28
    }
29
30
    public void setId(String id) {
31
        this.id = id;
32
    }
33
34
    public String getDivId() {
35
        return divId;
36
    }
37
38
    public void setDivId(String divId) {
39
        this.divId = divId;
40
    }
41
42 51340 konstantin
    public String getCommunity() {
43
        return community;
44
    }
45
46
    public void setCommunity(String community) {
47
        this.community = community;
48
    }
49
50 50613 konstantin
    public String getContent() {
51
        return content;
52
    }
53
54
    public void setContent(String content) {
55
        this.content = content;
56
    }
57
58
    public boolean getIsActive() {
59
        return isActive;
60
    }
61
62
    public void setIsActive(boolean isActive) {
63
        this.isActive = isActive;
64
    }
65
}