费用管理内容优化-初步

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
+11
View File
@@ -0,0 +1,11 @@
from typing import Generic, TypeVar
from pydantic.generics import GenericModel
T = TypeVar("T")
class FeeApiResponse(GenericModel, Generic[T]):
data: T | None = None
error: str | dict | None = None
meta: dict | None = None