-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 선착순 이벤트 결과 조회 API 에서 응모하지 않은 유저인 경우 leftOption, rightOption을 제외한…
… 나머지 필드에 대해서는 null을 반환하도록 수정
- Loading branch information
Showing
5 changed files
with
38 additions
and
35 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...sperEvent/domain/event/dto/ResponseDto/rushEventResponseDto/RushEventRateResponseDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package JGS.CasperEvent.domain.event.dto.ResponseDto.rushEventResponseDto; | ||
|
||
public record RushEventRateResponseDto(int optionId, long leftOption, long rightOption) { | ||
public record RushEventRateResponseDto(Integer optionId, Long leftOption, Long rightOption) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters