Skip to content

Commit

Permalink
Chore/#23: 컴파일 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
abc5259 committed Jul 30, 2024
1 parent cfa27cb commit 029cedf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/dnd/snappy/domain/common/BaseEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
import jakarta.persistence.Id;
import jakarta.persistence.MappedSuperclass;
import java.time.LocalDateTime;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.annotation.LastModifiedDate;
Expand All @@ -16,6 +18,8 @@
@EntityListeners(AuditingEntityListener.class)
@MappedSuperclass
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@SuperBuilder(toBuilder = true)
public class BaseEntity {

@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
Expand Down

0 comments on commit 029cedf

Please sign in to comment.