자금이체 이체신청 필터 까지
This commit is contained in:
@@ -1,8 +1,17 @@
|
||||
import { FundAccountStatus } from './types';
|
||||
import { FundAccountReceiveAccountNameNo, FundAccountStatus } from './types';
|
||||
|
||||
export const FundAccountStatusBtnGroup = [
|
||||
{name: '전체', value: FundAccountStatus.ALL},
|
||||
{name: '성공', value: FundAccountStatus.SUCCESS},
|
||||
{name: '실패', value: FundAccountStatus.FAIL},
|
||||
{name: '중지', value: FundAccountStatus.PENDING},
|
||||
];
|
||||
];
|
||||
|
||||
export const FundAccountReceiveAccountNameNoOptionsGroup = [
|
||||
{name: '수취인', value: FundAccountReceiveAccountNameNo.ReceiveAccountName },
|
||||
{name: '계좌번호', value: FundAccountReceiveAccountNameNo.ReceiveAccountNo },
|
||||
];
|
||||
|
||||
export const FundAccountReceiveBankCodeOptionsGroup = [
|
||||
{name: 'KB', value: 'KB'}
|
||||
]
|
||||
@@ -9,6 +9,11 @@ export interface FundAccountTabProps {
|
||||
activeTab: FundAccountTabKeys;
|
||||
}
|
||||
|
||||
export enum FundAccountReceiveAccountNameNo {
|
||||
ReceiveAccountNo = 'ReceiveAccountNo',
|
||||
ReceiveAccountName = 'ReceiveAccountName'
|
||||
};
|
||||
|
||||
|
||||
export interface ExtensionFundAccountTransferRequestParams {
|
||||
mid: string;
|
||||
@@ -147,5 +152,5 @@ export interface ExtensionFundAccountBalanceParams {
|
||||
mid: string;
|
||||
};
|
||||
export interface ExtensionFundAccountBalanceResponse {
|
||||
balalnce: number;
|
||||
balance: number;
|
||||
};
|
||||
Reference in New Issue
Block a user