ktianc 4320d2db82 feat:接口异常描述
fix:接口注释
fix:前端认证过期提示
2023-05-05 15:00:22 +08:00

39 lines
1.1 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/python
# -*- coding: utf-8 -*-
# @version : 1.0
# @Create Time : 2021/10/18 22:19
# @File : operation.py
# @IDE : PyCharm
# @desc : pydantic 模型,用于数据库序列化操作
# pydantic 验证数据https://blog.csdn.net/qq_44291044/article/details/104693526
from typing import Optional, List
from pydantic import BaseModel
class OpertionRecord(BaseModel):
telephone: Optional[str] = None
user_id: Optional[str] = None
user_name: Optional[str] = None
status_code: Optional[int] = None
client_ip: Optional[str] = None
request_method: Optional[str] = None
api_path: Optional[str] = None
system: Optional[str] = None
browser: Optional[str] = None
summary: Optional[str] = None
route_name: Optional[str] = None
description: Optional[str] = None
tags: Optional[List[str]] = None
process_time: Optional[str] = None
params: Optional[str] = None
create_datetime: Optional[str] = None
class OpertionRecordSimpleOut(OpertionRecord):
class Config:
orm_mode = True