From 69e3911255ee1009f3a0a59824b9d4f588844b1e Mon Sep 17 00:00:00 2001 From: Jihun Kim Date: Tue, 29 Jul 2025 21:14:54 +0900 Subject: [PATCH] =?UTF-8?q?fix(storePayment):=20accountNumber=20=ED=95=84?= =?UTF-8?q?=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/storepayment/dto/StorePaymentReadDto.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nowait-app-user-api/src/main/java/com/nowait/applicationuser/storepayment/dto/StorePaymentReadDto.java b/nowait-app-user-api/src/main/java/com/nowait/applicationuser/storepayment/dto/StorePaymentReadDto.java index e0af8aab..c96e01c2 100644 --- a/nowait-app-user-api/src/main/java/com/nowait/applicationuser/storepayment/dto/StorePaymentReadDto.java +++ b/nowait-app-user-api/src/main/java/com/nowait/applicationuser/storepayment/dto/StorePaymentReadDto.java @@ -17,6 +17,7 @@ public class StorePaymentReadDto { private String tossUrl; private String kakaoPayUrl; private String naverPayUrl; + private String accountNumber; private LocalDateTime createdAt; public static StorePaymentReadDto fromEntity(StorePayment storePayment) { @@ -26,6 +27,7 @@ public static StorePaymentReadDto fromEntity(StorePayment storePayment) { .tossUrl(storePayment.getTossUrl()) .kakaoPayUrl(storePayment.getKakaoPayUrl()) .naverPayUrl(storePayment.getNaverPayUrl()) + .accountNumber(storePayment.getAccountNumber()) .createdAt(storePayment.getCreatedAt()) .build(); }