锁仓上限改为可配置,默认3次不变,止盈按钮左侧增加修改入口
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -95,6 +95,7 @@ class Round(Base):
|
||||
id: Mapped[int] = mapped_column(primary_key=True)
|
||||
contract_code: Mapped[str] = mapped_column(String(10), index=True)
|
||||
daily_hands: Mapped[int] = mapped_column(Integer, default=1)
|
||||
max_locks: Mapped[int] = mapped_column(Integer, default=3)
|
||||
status: Mapped[str] = mapped_column(String(20), default="active")
|
||||
started_at: Mapped[date] = mapped_column(Date)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user