主干Ai实验室后端项目
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
from fastapi import FastAPI
|
||||
from pydantic import BaseModel
|
||||
from typing import Generic, TypeVar, Optional, List
|
||||
from pydantic.generics import GenericModel
|
||||
T = TypeVar("T")
|
||||
|
||||
# 定义通用响应结构
|
||||
class BaseResponse(GenericModel, Generic[T]):
|
||||
status: bool = True
|
||||
message: str = "操作成功"
|
||||
data: Optional[T] = None
|
||||
Reference in New Issue
Block a user