Skip to content

Commit

Permalink
style: import문 순서 변경
Browse files Browse the repository at this point in the history
import문 순서 변경
  • Loading branch information
Programmer-may committed Jan 1, 2024
1 parent fa8a788 commit dc2785b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
import jakarta.persistence.Column;
import jakarta.persistence.EntityListeners;
import jakarta.persistence.MappedSuperclass;
import java.time.LocalDateTime;
import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.annotation.LastModifiedDate;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;

import java.time.LocalDateTime;

@MappedSuperclass
@EntityListeners(AuditingEntityListener.class)
public abstract class BaseEntity {
Expand Down

0 comments on commit dc2785b

Please sign in to comment.