-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComment.java
More file actions
58 lines (44 loc) · 1.07 KB
/
Comment.java
File metadata and controls
58 lines (44 loc) · 1.07 KB
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
package model;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import com.fasterxml.jackson.annotation.JsonBackReference;
@Entity
@Table
public class Comment implements java.io.Serializable{
@Id
@Column(name = "c_id", unique = true, nullable = false)
private int id;
@Column
private String text;
@ManyToOne(cascade=CascadeType.ALL)
@JoinColumn(name = "id", nullable = false)
private Suggestion suggestion;
@JsonBackReference
public Suggestion getSuggestion() {
return this.suggestion;
}
public void setSuggestion(Suggestion suggestion) {
this.suggestion = suggestion;
}
public Comment(){
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}