Skip to content

Commit d4e74d9

Browse files
committed
Serializable 추가
1 parent 8cecd7e commit d4e74d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎src/main/java/com/rest/api/entity/common/CommonDateEntity.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77

88
import javax.persistence.EntityListeners;
99
import javax.persistence.MappedSuperclass;
10+
import java.io.Serializable;
1011
import java.time.LocalDateTime;
1112

1213
@Getter
1314
@MappedSuperclass
1415
@EntityListeners(AuditingEntityListener.class)
15-
public abstract class CommonDateEntity {
16+
public abstract class CommonDateEntity implements Serializable {
1617
@CreatedDate
1718
private LocalDateTime createdAt;
1819
@LastModifiedDate

0 commit comments

Comments
 (0)