初始化
This commit is contained in:
12
core/dto/api_response.py
Normal file
12
core/dto/api_response.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from typing import TypeVar, Generic
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
# 声明一个泛型类型变量
|
||||
T = TypeVar("T")
|
||||
|
||||
# 泛型响应体
|
||||
class ApiResponse(BaseModel, Generic[T]):
|
||||
code: int
|
||||
message: str
|
||||
data: T | None = None # data可以为空
|
||||
Reference in New Issue
Block a user