Skip to content

Commit 6ecaca4

Browse files
authored
Merge pull request #299 from GTable/feature/#290-public-code
refactor: publicCode 필드 추가
2 parents 10261f3 + 0599488 commit 6ecaca4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/dto/StoreWaitingInfo.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ public class StoreWaitingInfo {
1717
@Schema(description = "주점 ID", example = "1")
1818
private String storeId;
1919

20+
@Schema(description = "주점 publicCode", example = "ad2ndkald24d")
21+
private String publicCode;
22+
2023
@Schema(description = "주점명", example = "노웨이팅 치킨")
2124
private String storeName;
2225

nowait-app-user-api/src/main/java/com/nowait/applicationuser/store/service/StoreServiceImpl.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ public List<StoreWaitingInfo> getStoresByWaitingCount(boolean desc) {
282282
imageUrl,
283283
department.getName(),
284284
storeId,
285+
store.getPublicCode(),
285286
storeName,
286287
count != null ? count : 0
287288
));

0 commit comments

Comments
 (0)