Skip to content

Commit

Permalink
feat: add annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Kang1221 committed Sep 9, 2024
1 parent 7f26e83 commit ca559d3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
package co.orange.ddanzi.common.domain;

import jakarta.persistence.MappedSuperclass;
import lombok.Getter;
import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.annotation.LastModifiedDate;

import java.time.LocalDateTime;


@Getter
@MappedSuperclass
public class BaseTimeEntity {
@CreatedDate
LocalDateTime createdAt;
Expand Down

0 comments on commit ca559d3

Please sign in to comment.