We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10261f3 + 0599488 commit 6ecaca4Copy full SHA for 6ecaca4
2 files changed
nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/dto/StoreWaitingInfo.java
@@ -17,6 +17,9 @@ public class StoreWaitingInfo {
17
@Schema(description = "주점 ID", example = "1")
18
private String storeId;
19
20
+ @Schema(description = "주점 publicCode", example = "ad2ndkald24d")
21
+ private String publicCode;
22
+
23
@Schema(description = "주점명", example = "노웨이팅 치킨")
24
private String storeName;
25
nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/service/StoreServiceImpl.java
@@ -282,6 +282,7 @@ public List<StoreWaitingInfo> getStoresByWaitingCount(boolean desc) {
282
imageUrl,
283
department.getName(),
284
storeId,
285
+ store.getPublicCode(),
286
storeName,
287
count != null ? count : 0
288
));
0 commit comments