Skip to content

Commit

Permalink
add :: AllArgsConstructor 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Umjiseung committed Apr 13, 2024
1 parent 4da7d97 commit 966b18f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
import jakarta.persistence.Column;
import jakarta.persistence.Embeddable;
import jakarta.persistence.MappedSuperclass;
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;

@Embeddable
@MappedSuperclass
@NoArgsConstructor
@AllArgsConstructor
public class Week {

@Column(length = 3)
Expand Down

0 comments on commit 966b18f

Please sign in to comment.