Skip to content

Commit

Permalink
chore: Admin 엔티티 기본생성자 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
woosung1223 committed Nov 6, 2023
1 parent d8623c0 commit d356749
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor(access = AccessLevel.PROTECTED)
@Entity
public class Admin {

Expand Down

0 comments on commit d356749

Please sign in to comment.