fix subscribe api

This commit is contained in:
jxxghp
2023-07-03 10:42:01 +08:00
parent 4a91a43c30
commit 8adab8d645
5 changed files with 73 additions and 41 deletions

View File

@ -41,6 +41,8 @@ class Subscribe(BaseModel):
note: Optional[str] = None
# 状态N-新建, R-订阅中
state: Optional[str] = None
# 最后更新时间
last_update: Optional[str] = None
class Config:
orm_mode = True