File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/main/java/com/somemore/location/domain Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 33import static jakarta .persistence .GenerationType .IDENTITY ;
44import static lombok .AccessLevel .PROTECTED ;
55
6+ import com .somemore .global .common .BaseEntity ;
67import jakarta .persistence .Column ;
78import jakarta .persistence .Entity ;
89import jakarta .persistence .GeneratedValue ;
9- import jakarta .persistence .GenerationType ;
1010import jakarta .persistence .Id ;
1111import jakarta .persistence .Table ;
1212import lombok .Builder ;
1717@ NoArgsConstructor (access = PROTECTED )
1818@ Entity
1919@ Table (name = "location" )
20- public class Location {
20+ public class Location extends BaseEntity {
2121
22- @ Id @ GeneratedValue (strategy = IDENTITY )
22+ @ Id
23+ @ GeneratedValue (strategy = IDENTITY )
2324 private Long id ;
2425
2526 @ Column (name = "address" , nullable = false )
You can’t perform that action at this time.
0 commit comments