Skip to content

Commit bb180e7

Browse files
committed
fix
1 parent c08727b commit bb180e7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/outfitlab/project/infrastructure/model/SubscriptionEntity.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
import com.outfitlab.project.domain.model.SubscriptionModel;
44
import jakarta.persistence.*;
5+
import lombok.NoArgsConstructor;
56

67
@Entity
78
@Table(name = "suscription_entity")
9+
@NoArgsConstructor
810
public class SubscriptionEntity {
911

10-
@Id
12+
@Id
1113
@GeneratedValue(strategy = GenerationType.IDENTITY)
1214
private Long id;
1315

0 commit comments

Comments
 (0)