We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73de469 commit de75d3cCopy full SHA for de75d3c
back/src/main/java/com/back/domain/user/entity/User.java
@@ -10,6 +10,7 @@
10
import lombok.*;
11
import org.springframework.data.annotation.LastModifiedDate;
12
13
+import java.io.Serializable;
14
import java.time.LocalDateTime;
15
import java.util.ArrayList;
16
import java.util.List;
@@ -25,7 +26,7 @@
25
26
@NoArgsConstructor
27
@AllArgsConstructor
28
@Builder
-public class User extends BaseEntity {
29
+public class User extends BaseEntity implements Serializable {
30
31
@Column(nullable = false, unique = true)
32
private String email;
0 commit comments