Skip to content

Commit

Permalink
Merge pull request #85 from softeerbootcamp4th/feature/#79-rush-event…
Browse files Browse the repository at this point in the history
…-fix

fix: BaseEvent 필드를 private -> protected 로 변경
  • Loading branch information
wjddn2165 authored Aug 11, 2024
2 parents e06c765 + b71d408 commit 3b54055
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
public class BaseEvent extends BaseEntity {
@JsonSerialize(using = LocalDateTimeSerializer.class)
@JsonDeserialize(using = LocalDateTimeDeserializer.class)
private LocalDateTime startDateTime;
protected LocalDateTime startDateTime;

@JsonSerialize(using = LocalDateTimeSerializer.class)
@JsonDeserialize(using = LocalDateTimeDeserializer.class)
private LocalDateTime endDateTime;
private int winnerCount;
protected LocalDateTime endDateTime;
protected int winnerCount;

// 기본 생성자에서 디폴트 값 설정
public BaseEvent() {
Expand Down

0 comments on commit 3b54055

Please sign in to comment.