mirror of https://gitee.com/anolis/sysom.git
22 lines
598 B
Python
22 lines
598 B
Python
# -*- coding: utf-8 -*- #
|
|
"""
|
|
Time 2022/11/14 14:32
|
|
Author: mingfeng (SunnyQjm)
|
|
Email mfeng@linux.alibaba.com
|
|
File schemas.py
|
|
Description:
|
|
"""
|
|
from pydantic import BaseModel
|
|
|
|
###########################################################################
|
|
# Define schemas here
|
|
###########################################################################
|
|
|
|
# @reference https://fastapi.tiangolo.com/zh/tutorial/response-model/
|
|
# class Person(BaseModel):
|
|
# id: int
|
|
# name: str
|
|
# age: int
|
|
|
|
# class Config:
|
|
# orm_mode = True |