From 6cea6ab5cf355aaf499ab742fd15ffb953a06686 Mon Sep 17 00:00:00 2001 From: JUNG YI DAM Date: Wed, 10 Aug 2022 09:31:28 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9B=B9=EC=9E=85=EC=B6=9C=EA=B8=88=EC=A0=95?= =?UTF-8?q?=EC=82=B0=20=EB=B3=80=EC=88=98=EB=AA=85=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/mock-api/apps/bank/web-calculate/data.ts | 10 +++++----- .../bank/web-calculate/components/list.component.html | 6 +++--- .../admin/bank/web-calculate/models/web-calculate.ts | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/app/mock-api/apps/bank/web-calculate/data.ts b/src/app/mock-api/apps/bank/web-calculate/data.ts index 73c782e..fc586f9 100644 --- a/src/app/mock-api/apps/bank/web-calculate/data.ts +++ b/src/app/mock-api/apps/bank/web-calculate/data.ts @@ -9,18 +9,18 @@ export const webCalculates = [ webDepositRank: '회원', nameOfDepositer: '가가가', webDepositAmountOfPayment: 100000, - webDepositRegistrationDate: '2022-06-13 12:57', + webDepositRegistDate: '2022-06-13 12:57', webDepositConfirmDate: '2022-06-13 12:58', webWithdrawIdx: 1, webWithdrawId: 'aa100', webWithdrawNickname: 'aa100', webWithdrawRank: '회원', - nameOfBank: '광주은행', + bankName: '광주은행', accountHolder: '예금주', accountNumber: '2222229999-222', webWithdrawAmountOfPayment: 5000000, - webWithdrawRegistrationDate: '2022-06-08 18:31', + webWithdrawRegistDate: '2022-06-08 18:31', webWithdrawConfirmDate: '2022-06-12 20:13', }, { @@ -31,7 +31,7 @@ export const webCalculates = [ webDepositRank: '회원', nameOfDepositer: '가가가', webDepositAmountOfPayment: 100000, - webDepositRegistrationDate: '2022-06-13 12:56', + webDepositRegistDate: '2022-06-13 12:56', webDepositConfirmDate: '2022-06-13 12:57', webWithdrawIdx: 2, @@ -40,7 +40,7 @@ export const webCalculates = [ webWithdrawRank: '회원', accountHolder: '광주은행 예금주22 565656565656', webWithdrawAmountOfPayment: 14000000, - webWithdrawRegistrationDate: '2022-06-10 18:31', + webWithdrawRegistDate: '2022-06-10 18:31', webWithdrawConfirmDate: '2022-06-10 20:13', }, ]; diff --git a/src/app/modules/admin/bank/web-calculate/components/list.component.html b/src/app/modules/admin/bank/web-calculate/components/list.component.html index 40b0f27..248d3df 100644 --- a/src/app/modules/admin/bank/web-calculate/components/list.component.html +++ b/src/app/modules/admin/bank/web-calculate/components/list.component.html @@ -117,7 +117,7 @@ {{ webCalculate.webDepositAmountOfPayment }}원 @@ -185,7 +185,7 @@
{{ webCalculate.webWithdrawRank }}
diff --git a/src/app/modules/admin/bank/web-calculate/models/web-calculate.ts b/src/app/modules/admin/bank/web-calculate/models/web-calculate.ts index c3b7eca..c115da0 100644 --- a/src/app/modules/admin/bank/web-calculate/models/web-calculate.ts +++ b/src/app/modules/admin/bank/web-calculate/models/web-calculate.ts @@ -6,7 +6,7 @@ export interface WebCalculate { webDepositRank?: string; // 웹입금 등급 nameOfDepositer?: string; // 입금자명 webDepositAmountOfPayment?: number; // 웹입금 결제금액 - webDepositRegistrationDate?: Date; // 웹입금 신청일 + webDepositRegistDate?: Date; // 웹입금 신청일 webDepositConfirmDate?: Date; // 웹입금 확인일 webWithdrawIdx?: number; // 웹출금 idx @@ -14,9 +14,9 @@ export interface WebCalculate { webWithdrawNickname?: string; // 웹출금 닉네임 webWithdrawRank?: string; // 웹출금 등급 accountHolder?: string; - nameOfBank?: string; + bankName?: string; accountNumber?: string; webWithdrawAmountOfPayment?: number; // 웹출금 결제금액 - webWithdrawRegistrationDate?: Date; // 웹출금 신청일 + webWithdrawRegistDate?: Date; // 웹출금 신청일 webWithdrawConfirmDate?: Date; // 웹출금 확인일 }