diff --git a/nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/dto/StoreDetailReadResponse.java b/nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/dto/StoreDetailReadResponse.java index e84c21c1..191eded0 100644 --- a/nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/dto/StoreDetailReadResponse.java +++ b/nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/dto/StoreDetailReadResponse.java @@ -15,6 +15,7 @@ @Builder public class StoreDetailReadResponse { private Long storeId; + private String publicCode; private Long bookmarkId; private Boolean isBookmark; private Long waitingCount; @@ -48,6 +49,7 @@ public static StoreDetailReadResponse fromEntity( return StoreDetailReadResponse.builder() .storeId(store.getStoreId()) + .publicCode(store.getPublicCode()) .bookmarkId(bookmarkId) .isBookmark(isBookmark) .waitingCount(waitingCount)