- 계좌점유인증,계좌성명조회 Status: ALL -> " " 수정
- 자금이체 500Error : pagination -> page 수정
This commit is contained in:
@@ -42,7 +42,7 @@ export interface ExtensionFundAccountTransferListParams {
|
|||||||
fromDate: string;
|
fromDate: string;
|
||||||
toDate: string;
|
toDate: string;
|
||||||
status: FundAccountStatus;
|
status: FundAccountStatus;
|
||||||
pagination: DefaultRequestPagination;
|
page: DefaultRequestPagination;
|
||||||
}
|
}
|
||||||
export interface ExtensionFundAccountTransferListResponse extends DefaulResponsePagination {
|
export interface ExtensionFundAccountTransferListResponse extends DefaulResponsePagination {
|
||||||
content: Array<FundAccountTransferContent>;
|
content: Array<FundAccountTransferContent>;
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import { FaceAuthListItem } from './face-auth/types';
|
|||||||
// ========================================
|
// ========================================
|
||||||
|
|
||||||
export enum ProcessResult {
|
export enum ProcessResult {
|
||||||
ALL = 'ALL',
|
ALL = '',
|
||||||
SUCCESS = 'SUCCESS',
|
SUCCESS = 'SUCCESS',
|
||||||
FAIL = 'FAIL'
|
FAIL = 'FAIL'
|
||||||
}
|
}
|
||||||
@@ -151,7 +151,7 @@ export interface KeyInPaymentFilterProps extends FilterProps {
|
|||||||
// 계좌 점유 조회 관련 타입들
|
// 계좌 점유 조회 관련 타입들
|
||||||
// ========================================
|
// ========================================
|
||||||
export enum AuthAndTransferStatus {
|
export enum AuthAndTransferStatus {
|
||||||
ALL = "ALL",
|
ALL = "",
|
||||||
REQUEST = "REQUEST",
|
REQUEST = "REQUEST",
|
||||||
SUCCESS = "SUCCESS",
|
SUCCESS = "SUCCESS",
|
||||||
FAIL = "FAIL"
|
FAIL = "FAIL"
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ export const FundAccountTransferListWrap = () => {
|
|||||||
fromDate: fromDate,
|
fromDate: fromDate,
|
||||||
toDate: toDate,
|
toDate: toDate,
|
||||||
status: status,
|
status: status,
|
||||||
pagination: pageParam
|
page: pageParam
|
||||||
};
|
};
|
||||||
|
|
||||||
extensionFundAccountTransferList(params).then((rs: ExtensionFundAccountTransferListResponse) => {
|
extensionFundAccountTransferList(params).then((rs: ExtensionFundAccountTransferListResponse) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user