feat: 初始提交 - 科创企业特有风险的识别与管理 (数智风控系统)

This commit is contained in:
Chen Xiao
2026-08-14 08:21:26 +08:00
commit a41576a8c0
190 changed files with 28531 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
"""
🛡️ 科创企业智能风控与核保系统 - 主入口转接脚本
自动重定向并加载 `🏠_系统首页.py`
"""
import runpy
import os
import sys
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
home_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), "🏠_系统首页.py")
runpy.run_path(home_script, run_name="__main__")