-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathCourse.java
59 lines (45 loc) · 1.31 KB
/
Course.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
package nextstep.courses.domain;
import nextstep.courses.utils.BaseEntity;
import java.time.LocalDateTime;
public class Course extends BaseEntity {
private Long id;
private String title;
private Long creatorId;
public Course() {
}
public Course(String title, Long creatorId) {
this(0L, title, creatorId, LocalDateTime.now(), null);
}
public Course(Long id, String title, Long creatorId) {
this(id, title, creatorId, LocalDateTime.now(), null);
}
public Course(Long id, String title, Long creatorId, LocalDateTime createdAt, LocalDateTime updatedAt) {
this.id = id;
this.title = title;
this.creatorId = creatorId;
this.createdAt = createdAt;
this.updatedAt = updatedAt;
}
public Long id() {
return id;
}
public String getTitle() {
return title;
}
public Long getCreatorId() {
return creatorId;
}
public LocalDateTime getCreatedAt() {
return createdAt;
}
@Override
public String toString() {
return "Course{" +
"id=" + id +
", title='" + title + '\'' +
", creatorId=" + creatorId +
", createdAt=" + createdAt +
", updatedAt=" + updatedAt +
'}';
}
}