From b4ed768291338e41ad8f56c33e4788c7377e07b5 Mon Sep 17 00:00:00 2001 From: jingboyitiji Date: Fri, 28 Mar 2025 11:01:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/dataread.py | 11 +++++++++++ 1 file changed, 11 insertions(+) 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