Skip to content

Commit

Permalink
[fix] Feign에서 값을 받기 위한 기본 생성자 추 (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Oct 10, 2024
1 parent cc047ff commit 61baaa6
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public record UserActiveInfo(

@Getter
@Builder
@NoArgsConstructor(access = AccessLevel.PRIVATE)
@AllArgsConstructor(access = AccessLevel.PRIVATE)
public static class PlaygroundMain {
private Long id;
Expand Down Expand Up @@ -77,6 +78,7 @@ public static class MainViewUser {

@Getter
@Builder
@NoArgsConstructor(access = AccessLevel.PRIVATE)
@AllArgsConstructor(access = AccessLevel.PUBLIC)
public static class PlaygroundProfile {

Expand Down Expand Up @@ -113,6 +115,7 @@ public String getPart() {

@Getter
@Builder
@NoArgsConstructor(access = AccessLevel.PRIVATE)
@AllArgsConstructor(access = AccessLevel.PRIVATE)
public static class OwnPlaygroundProfile {

Expand Down

0 comments on commit 61baaa6

Please sign in to comment.