数据库 数据校验写入等逻辑更新。

This commit is contained in:
Neo
2026-02-01 03:46:16 +08:00
parent 9948000b71
commit 076f5755ca
128 changed files with 494310 additions and 2819 deletions

View File

@@ -45,7 +45,7 @@ class AppSettings:
"history_start": "",
"history_end": "",
"lookback_hours": 24,
"include_dimensions": False,
"include_dimensions": True,
"auto_backfill": False,
"ods_tasks": "",
},
@@ -277,7 +277,7 @@ class AppSettings:
@property
def integrity_include_dimensions(self) -> bool:
return self._settings.get("integrity_check", {}).get("include_dimensions", False)
return self._settings.get("integrity_check", {}).get("include_dimensions", True)
@integrity_include_dimensions.setter
def integrity_include_dimensions(self, value: bool):