- 계좌점유인증,계좌성명조회 Status: ALL -> " " 수정

- 자금이체 500Error : pagination -> page 수정
This commit is contained in:
HyeonJongKim
2025-10-16 10:34:58 +09:00
parent a351710cc7
commit 8f93650ba0
3 changed files with 4 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ export interface ExtensionFundAccountTransferListParams {
fromDate: string;
toDate: string;
status: FundAccountStatus;
pagination: DefaultRequestPagination;
page: DefaultRequestPagination;
}
export interface ExtensionFundAccountTransferListResponse extends DefaulResponsePagination {
content: Array<FundAccountTransferContent>;

View File

@@ -12,7 +12,7 @@ import { FaceAuthListItem } from './face-auth/types';
// ========================================
export enum ProcessResult {
ALL = 'ALL',
ALL = '',
SUCCESS = 'SUCCESS',
FAIL = 'FAIL'
}
@@ -151,7 +151,7 @@ export interface KeyInPaymentFilterProps extends FilterProps {
// 계좌 점유 조회 관련 타입들
// ========================================
export enum AuthAndTransferStatus {
ALL = "ALL",
ALL = "",
REQUEST = "REQUEST",
SUCCESS = "SUCCESS",
FAIL = "FAIL"

View File

@@ -62,7 +62,7 @@ export const FundAccountTransferListWrap = () => {
fromDate: fromDate,
toDate: toDate,
status: status,
pagination: pageParam
page: pageParam
};
extensionFundAccountTransferList(params).then((rs: ExtensionFundAccountTransferListResponse) => {