Skip to content
Merged
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 @@ -15,6 +15,7 @@
@Builder
public class StoreDetailReadResponse {
private Long storeId;
private String publicCode;
private Long bookmarkId;
private Boolean isBookmark;
private Long waitingCount;
Expand Down Expand Up @@ -48,6 +49,7 @@ public static StoreDetailReadResponse fromEntity(

return StoreDetailReadResponse.builder()
.storeId(store.getStoreId())
.publicCode(store.getPublicCode())
.bookmarkId(bookmarkId)
.isBookmark(isBookmark)
.waitingCount(waitingCount)
Expand Down