We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 82e326d + 69e3911 commit 1681bb2Copy full SHA for 1681bb2
1 file changed
nowait-app-user-api/src/main/java/com/nowait/applicationuser/storepayment/dto/StorePaymentReadDto.java
@@ -17,6 +17,7 @@ public class StorePaymentReadDto {
17
private String tossUrl;
18
private String kakaoPayUrl;
19
private String naverPayUrl;
20
+ private String accountNumber;
21
private LocalDateTime createdAt;
22
23
public static StorePaymentReadDto fromEntity(StorePayment storePayment) {
@@ -26,6 +27,7 @@ public static StorePaymentReadDto fromEntity(StorePayment storePayment) {
26
27
.tossUrl(storePayment.getTossUrl())
28
.kakaoPayUrl(storePayment.getKakaoPayUrl())
29
.naverPayUrl(storePayment.getNaverPayUrl())
30
+ .accountNumber(storePayment.getAccountNumber())
31
.createdAt(storePayment.getCreatedAt())
32
.build();
33
}
0 commit comments