We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3af6f6 commit ac7365eCopy full SHA for ac7365e
src/main/java/com/example/log4u/domain/hashtag/entity/DiaryHashtag.java
@@ -1,5 +1,7 @@
1
package com.example.log4u.domain.hashtag.entity;
2
3
+import com.example.log4u.common.entity.BaseEntity;
4
+
5
import jakarta.persistence.Column;
6
import jakarta.persistence.Entity;
7
import jakarta.persistence.GeneratedValue;
@@ -16,7 +18,7 @@
16
18
@NoArgsConstructor(access = AccessLevel.PROTECTED)
17
19
@AllArgsConstructor
20
@Builder
-public class DiaryHashtag { // 다이어리 - 해시태그 연결 엔티티
21
+public class DiaryHashtag extends BaseEntity { // 다이어리 - 해시태그 연결 엔티티
22
23
@Id
24
@GeneratedValue(strategy = GenerationType.IDENTITY)
@@ -27,4 +29,4 @@ public class DiaryHashtag { // 다이어리 - 해시태그 연결 엔티티
27
29
28
30
@Column(nullable = false)
31
private Long hashtagId;
-}
32
+}
0 commit comments