자그ㅁㅇㅣㅊ

This commit is contained in:
focp212@naver.com
2025-09-22 19:58:05 +09:00
parent 20a6e33b73
commit 7d473cdc0a
6 changed files with 166 additions and 29 deletions

View File

@@ -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},
];

View File

@@ -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;

View File

@@ -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
}