데이터를 논리삭제 하기 위해서 주로 공통된 BaseTimeEntity 클래스를 만들어서 사용한다. 공용으로 사용되는 BaseTimeEntity의 함수들과 칼럼들에 대해 공부하기 위해 작성한다. 🌱그전에, 미리 물리삭제와 논리삭제에 대해 공부하는 것을 추천한다. https://for-if.tistory.com/59 @Getter @MappedSuperclass @EntityListeners(AuditingEntityListener.class) public abstract class BaseTimeEntity { @CreatedDate private LocalDateTime createdAt; @Column(insertable = false) @LastModifiedDate private LocalDateT..