Files
2024-03-20 18:30:39 +08:00

28 lines
385 B
Python

from pydantic import BaseModel
# 用户信息
class UserCreate(BaseModel):
password: str
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
is_active: bool
class Config:
orm_mode = True