test
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user