자그ㅁㅇㅣㅊ
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { FundAccountStatus } from './types';
|
||||
|
||||
export const FundAccountStatusBtnGroup = [
|
||||
{name: '전체', value: FundAccountStatus.ALL},
|
||||
{name: '성공', value: FundAccountStatus.SUCCESS},
|
||||
{name: '실패', value: FundAccountStatus.FAIL},
|
||||
{name: '중지', value: FundAccountStatus.PENDING},
|
||||
];
|
||||
@@ -44,14 +44,14 @@ export interface FundAccountTransferContent {
|
||||
items: Array<FundAccountTransferContentItem>;
|
||||
};
|
||||
export interface FundAccountTransferContentItem {
|
||||
tid: string;
|
||||
requestDate: string;
|
||||
transferAmount: number;
|
||||
receiveBankName: string;
|
||||
receiveAccountNo: string;
|
||||
receiveAccountName: string;
|
||||
status: FundAccountStatus;
|
||||
processDate: string;
|
||||
tid?: string;
|
||||
requestDate?: string;
|
||||
transferAmount?: number;
|
||||
receiveBankName?: string;
|
||||
receiveAccountNo?: string;
|
||||
receiveAccountName?: string;
|
||||
status?: FundAccountStatus;
|
||||
processDate?: string;
|
||||
};
|
||||
export interface ExtensionFundAccountTransferExcelParams {
|
||||
mid: string;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { DefaulResponsePagination, DefaultRequestPagination } from '@/entities/common/model/types';
|
||||
import { PayoutContent } from './payout/types';
|
||||
import { P } from 'node_modules/framer-motion/dist/types.d-Cjd591yU';
|
||||
import { FundAccountTransferContentItem } from './fund-account/types';
|
||||
|
||||
// ========================================
|
||||
// 공통 Enums 및 타입들
|
||||
@@ -365,8 +366,8 @@ export interface SettlementAgencyBottomAgreeProps {
|
||||
export interface ListItemProps extends
|
||||
KeyInPaymentListItem, AccountHolderSearchListItem,
|
||||
AccountHolderAuthListItem,LinkPaymentHistoryListItem,
|
||||
LinkPaymentWaitListItem,
|
||||
PayoutContent {
|
||||
LinkPaymentWaitListItem, PayoutContent,
|
||||
FundAccountTransferContentItem {
|
||||
additionalServiceCategory?: AdditionalServiceCategory;
|
||||
mid?: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user