feat 洗版设置
This commit is contained in:
@ -53,6 +53,10 @@ class Subscribe(Base):
|
|||||||
username = Column(String)
|
username = Column(String)
|
||||||
# 订阅站点
|
# 订阅站点
|
||||||
sites = Column(String)
|
sites = Column(String)
|
||||||
|
# 是否洗版
|
||||||
|
best_version = Column(Integer, default=0)
|
||||||
|
# 当前优先级
|
||||||
|
current_priority = Column(Integer)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def exists(db: Session, tmdbid: int, season: int = None):
|
def exists(db: Session, tmdbid: int, season: int = None):
|
||||||
|
@ -47,6 +47,10 @@ class Subscribe(BaseModel):
|
|||||||
username: Optional[str] = None
|
username: Optional[str] = None
|
||||||
# 订阅站点
|
# 订阅站点
|
||||||
sites: Optional[List[int]] = None
|
sites: Optional[List[int]] = None
|
||||||
|
# 是否洗版
|
||||||
|
best_version: Optional[int] = 0
|
||||||
|
# 当前优先级
|
||||||
|
current_priority: Optional[int] = None
|
||||||
|
|
||||||
class Config:
|
class Config:
|
||||||
orm_mode = True
|
orm_mode = True
|
||||||
|
Reference in New Issue
Block a user