거래내역 관련

This commit is contained in:
focp212@naver.com
2025-09-10 09:38:20 +09:00
parent 6c778d9d40
commit 73d3f7008f
45 changed files with 1101 additions and 1110 deletions

View File

@@ -1,8 +1,8 @@
export const DEFAULT_PAGE_PARAM = {
page: 0,
cursor: 'string',
size: 0,
sortBy: 'string',
sortOrder: 'ASC',
orderBy: 'string',
offset: 0
limit: 0
};

View File

@@ -1,10 +1,10 @@
export interface DefaultRequestPagination {
page: number;
cursor: string;
size: number;
sortBy: string;
sortOrder: string;
orderBy: string;
offset: number;
limit: number;
};
export interface DefaulResponsePagination {
nextCursor: string | null;