就业管理模块
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""统一响应包装体"""
|
||||
from typing import Generic, Optional, TypeVar
|
||||
from pydantic import BaseModel
|
||||
T = TypeVar("T")
|
||||
class ApiResponse(BaseModel, Generic[T]):
|
||||
code: int = 200
|
||||
msg: str = "success"
|
||||
data: Optional[T] = None
|
||||
Reference in New Issue
Block a user