Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@Getter
@Builder
public class GetMyWaitingInfoResponse {
private String reservationId;
private String waitingNumber;
private String publicCode;
private Long storeId;
private String storeName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public List<GetMyWaitingInfoResponse> getMyWaitingInfo(CustomOAuth2User oAuth2Us
Long rank = waitingRedisRepository.getWaitingCount(storeId);

return GetMyWaitingInfoResponse.builder()
.reservationId(dto.getReservationId())
.waitingNumber(dto.getWaitingNumber())
.publicCode(dto.getPublicCode())
.storeId(dto.getStoreId())
.storeName(dto.getStoreName())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@Getter
public class GetMyWaitingBaseDto {
private final String reservationId;
private final String waitingNumber;
private final String publicCode;
private final Long storeId;
private final String storeName;
Expand All @@ -25,7 +25,7 @@ public class GetMyWaitingBaseDto {

@QueryProjection
public GetMyWaitingBaseDto(
String reservationId,
String waitingNumber,
String publicCode,
Long storeId,
String storeName,
Expand All @@ -37,7 +37,7 @@ public GetMyWaitingBaseDto(
String profileImageUrl,
String bannerImageUrl
) {
this.reservationId = reservationId;
this.waitingNumber = waitingNumber;
this.publicCode = publicCode;
this.storeId = storeId;
this.storeName = storeName;
Expand Down