ktianc 0152dc9c70 版本更新:
1. 更新(kinit-api,kinit-admin):更新操作记录字段
2. 更新(kinit-api):更新 Mongodb 查询操作
2023-03-23 23:11:47 +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
# @Creaet 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