功能:支持动态配置每日比价次数上限

This commit is contained in:
unknown
2026-07-28 21:49:24 +08:00
parent 90c6fe599a
commit 252a2fdc5d
6 changed files with 74 additions and 13 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class RiskMonitorSummary(BaseModel):
class RiskRuleConfig(BaseModel):
sms_hourly_threshold: int = Field(ge=1, le=5)
oneclick_daily_threshold: int = Field(ge=1, le=100_000)
compare_daily_threshold: int = Field(ge=1, le=100)
compare_daily_threshold: int = Field(ge=1, le=100_000)
class RiskIncidentItem(BaseModel):