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(); }