refactor: 프로퍼티 권한 private -> protected 변경

closed #60
This commit is contained in:
dongHyo
2022-07-12 00:38:40 +09:00
parent af9c5bab9c
commit b31ef62253

View File

@@ -19,15 +19,15 @@ public abstract class AbstractEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
protected Long id;
@Column(nullable = false, updatable = false)
@CreatedDate
private LocalDateTime createdAt;
protected LocalDateTime createdAt;
@LastModifiedDate
private LocalDateTime updatedAt;
protected LocalDateTime updatedAt;
private LocalDateTime deletedAt;
protected LocalDateTime deletedAt;
}