-
Notifications
You must be signed in to change notification settings - Fork 0
/
Recipe.java
82 lines (65 loc) · 1.85 KB
/
Recipe.java
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
package net.pengcook.recipe.domain;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.ManyToOne;
import java.time.LocalDateTime;
import java.time.LocalTime;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import net.pengcook.user.domain.User;
@Entity
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@AllArgsConstructor
@Getter
public class Recipe {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(nullable = false)
private String title;
@ManyToOne
@JoinColumn(name = "author_id")
private User author;
@Column(nullable = false)
private LocalTime cookingTime;
@Column(nullable = false)
private String thumbnail;
@Column(nullable = false)
private int difficulty;
@Column(nullable = false)
private int likeCount;
@Column(nullable = false)
private int commentCount;
@Column(nullable = true)
private String description;
@Column(nullable = false, updatable = false)
private LocalDateTime createdAt;
public Recipe(
String title,
User author,
LocalTime cookingTime,
String thumbnail,
int difficulty,
String description
) {
this(0L, title, author, cookingTime, thumbnail, difficulty, 0, 0, description, LocalDateTime.now());
}
public void increaseLikeCount() {
likeCount++;
}
public void decreaseLikeCount() {
likeCount--;
}
public void increaseCommentCount() {
commentCount++;
}
public void decreaseCommentCount() {
commentCount--;
}
}