diff --git a/lib/dataread.py b/lib/dataread.py index 459b655..796c1ec 100644 --- a/lib/dataread.py +++ b/lib/dataread.py @@ -123,6 +123,9 @@ global_config = { 'sqlitedb': None, 'db_mysql': None, 'baichuan_table_name': None, + + # 报告配置 + 'is_bdwd': None, # 是否使用bdwd数据 } # 定义函数 @@ -1205,6 +1208,11 @@ class Config: @property def db_mysql(self): return global_config['db_mysql'] + # 报告配置 + @property + def is_bdwd(self): return global_config['is_bdwd'] + + config = Config() @@ -2315,3 +2323,6 @@ def push_market_value(): except Exception as e: config.logger.error(f"推送数据失败: {e}") + +def get_bdwd_predict_data(): + pass \ No newline at end of file