Skip to content

Commit

Permalink
Merge branch 'main' into feature/#97-kakao-auth
Browse files Browse the repository at this point in the history
  • Loading branch information
laphayen committed Jul 26, 2024
2 parents 7ea2b01 + 13a2e86 commit 858ed88
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ public abstract class AuditingFields{

@DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME)
@CreatedDate
@Column(nullable = false, updatable = false) private LocalDateTime createdAt; // 생성일시
@Column(nullable = false, updatable = false) protected LocalDateTime createdAt; // 생성일시

@CreatedBy
@Column(nullable = false, updatable = false, length = 100) private String createdBy; // 생성자
@Column(nullable = false, updatable = false, length = 100) protected String createdBy; // 생성자

@DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME)
@LastModifiedDate
@Column(nullable = false) private LocalDateTime modifiedAt; // 수정일시
@Column(nullable = false) protected LocalDateTime modifiedAt; // 수정일시

@LastModifiedBy
@Column(nullable = false, length = 100) private String modifiedBy; // 수정자
@Column(nullable = false, length = 100) protected String modifiedBy; // 수정자

}

0 comments on commit 858ed88

Please sign in to comment.