Skip to content

Commit

Permalink
fix: 기존 코드 복구
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Dec 12, 2024
1 parent 0d28402 commit 05cff92
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import jakarta.persistence.ManyToOne;
import jakarta.persistence.Table;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;

Expand Down Expand Up @@ -94,6 +95,7 @@ public class Apply extends BaseTimeEntity {
@Convert(converter = ApplyStatusConverter.class)
private EnApplyStatus status;

@Builder
public Apply(EnApplyType type, Meeting meeting, Integer meetingId, User user, Integer userId,
String content) {
this.type = type;
Expand Down

0 comments on commit 05cff92

Please sign in to comment.