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 @@ -9,6 +9,7 @@
@Builder
public class GetMyWaitingInfoResponse {
private String reservationId;
private String publicCode;
private Long storeId;
private String storeName;
private String departmentName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ public List<GetMyWaitingInfoResponse> getMyWaitingInfo(CustomOAuth2User oAuth2Us

return GetMyWaitingInfoResponse.builder()
.reservationId(dto.getReservationId())
.publicCode(dto.getPublicCode())
.storeId(dto.getStoreId())
.storeName(dto.getStoreName())
.departmentName(dto.getDepartmentName())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
@Getter
public class GetMyWaitingBaseDto {
private final String reservationId;
private final String publicCode;
private final Long storeId;
private final String storeName;
private final String departmentName;
Expand All @@ -25,6 +26,7 @@ public class GetMyWaitingBaseDto {
@QueryProjection
public GetMyWaitingBaseDto(
String reservationId,
String publicCode,
Long storeId,
String storeName,
String departmentName,
Expand All @@ -36,6 +38,7 @@ public GetMyWaitingBaseDto(
String bannerImageUrl
) {
this.reservationId = reservationId;
this.publicCode = publicCode;
this.storeId = storeId;
this.storeName = storeName;
this.departmentName = departmentName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public List<GetMyWaitingBaseDto> findMyWaitingInfo(Long userId) {
return queryFactory
.select(new QGetMyWaitingBaseDto(
reservation.reservationNumber,
store.publicCode,
store.storeId,
store.name,
department.name,
Expand Down