费用管理内容优化-初步

This commit is contained in:
Cheng Zhou
2026-01-13 16:49:55 +08:00
parent 0c7c03069a
commit 1db36f40b0
43 changed files with 5229 additions and 26 deletions
+6
View File
@@ -3,6 +3,12 @@ export interface ApiListResponse<T> {
total: number;
}
export interface FeeApiResponse<T> {
data?: T | null;
error?: string | Record<string, any> | null;
meta?: Record<string, any> | null;
}
export interface ApiError {
code: string;
message: string;