fix QueryPage equalsExample arg

This commit is contained in:
Timi
2025-12-08 18:48:54 +08:00
parent 6755c483c7
commit 3524de0cb6
3 changed files with 14 additions and 12 deletions

View File

@ -17,7 +17,7 @@ export type QueryPage = {
index: number;
size: number;
orderMap?: { [key: string]: OrderType };
equealsExample?: { [key: string]: string | undefined | null };
equalsExample?: { [key: string]: string | undefined | null };
likeExample?: { [key: string]: string | undefined | null };
}