This commit is contained in:
jxxghp
2023-09-28 16:14:52 +08:00
parent bd4c639761
commit e6af2c0f34
4 changed files with 16 additions and 9 deletions

View File

@ -36,6 +36,12 @@ class DownloadHistory(BaseModel):
torrent_description: Optional[str] = None
# 站点
torrent_site: Optional[str] = None
# 下载用户
userid: Optional[str] = None
# 下载渠道
channel: Optional[str] = None
# 创建时间
date: Optional[str] = None
# 备注
note: Optional[str] = None