This commit is contained in:
focp212@naver.com
2025-10-15 17:57:27 +09:00
parent 174a36a0b7
commit a07e80e60c
5 changed files with 18 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
import { DefaulResponsePagination, DefaultRequestPagination, SuccessResult } from '@/entities/common/model/types';
import { DefaulResponsePagination, DefaultRequestPagination, SortTypeKeys, SuccessResult } from '@/entities/common/model/types';
export enum CancelTabKeys {
All = 'All',
@@ -225,20 +225,21 @@ export interface AllTransactionListSummaryResponse {
totalTransactionAmount: number;
};
export interface AllTransactionListParams {
moid: string;
tid: string;
moid?: string;
tid?: string;
fromDate: string;
toDate: string;
stateCode: string;
serviceCode: string;
stateCode?: string;
serviceCode?: string;
minAmount?: number;
maxAmount?: number;
dateCl: string;
goodsName: string;
dateCl?: string;
goodsName?: string;
cardCode?: string;
bankCode?: string;
searchCl?: AllTransactionSearchCl;
searchValue?: string;
sortType?: SortTypeKeys;
page?: DefaultRequestPagination;
};