Skip to content

Commit 1deb035

Browse files
[FEAT] 초기 인원인지 확인하는 필드 추가 (#54) (#55)
[FEAT] 초기 인원인지 확인하는 필드 추가
1 parent d66b38e commit 1deb035

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/com/brainpix/joining/entity/purchasing/CollectionGathering.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,16 @@ public class CollectionGathering extends BaseTimeEntity {
2525

2626
private Boolean accepted;
2727

28+
private Boolean initialGathering;
29+
2830
@ManyToOne
2931
private CollaborationRecruitment collaborationRecruitment;
3032

31-
public CollectionGathering(User joiner, Boolean accepted, CollaborationRecruitment collaborationRecruitment) {
33+
public CollectionGathering(User joiner, Boolean accepted, Boolean initialGathering,
34+
CollaborationRecruitment collaborationRecruitment) {
3235
this.joiner = joiner;
3336
this.accepted = accepted;
37+
this.initialGathering = initialGathering;
3438
this.collaborationRecruitment = collaborationRecruitment;
3539
}
3640
}

0 commit comments

Comments
 (0)