Files
gitlab-instance-0a899031_ku…/schemas.py
2024-03-20 19:43:50 +08:00

22 lines
343 B
Python

from pydantic import BaseModel
# 用户信息
class UserCreate(BaseModel):
wxid: str
openId: str
sex: str
country: str
province: str
sourceStr: str
usertype: str
nickname: str
wxaccount: str
remark: str
smallhead: str
class User(UserCreate):
id: int
class Config:
orm_mode = True