From 3818835d686a6c0850bb65c2eab36b175cec7e01 Mon Sep 17 00:00:00 2001 From: Jihun Kim Date: Thu, 28 Aug 2025 13:12:36 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20StoreDetailReadResponse=20publicCod?= =?UTF-8?q?e=20=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../applicationuser/store/dto/StoreDetailReadResponse.java | 2 ++ 1 file changed, 2 insertions(+) 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)