Files
WebServer/config.py
2025-08-30 19:51:53 +08:00

46 lines
1.8 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 配置文件 - 分离硬编码的公司信息数据
COMPANY_INFO = {
"name": "富澤證券(國際)有限公司",
"slogan": "科技賦能投資,智慧創造價值",
"about": "富澤證券(國際)有限公司作為一家現代化金融服務機構,始終致力於為投資者提供優質的環球股票交易服務和智能化的投資體驗。",
"services": [
{
"name": "人工智能解决方案",
"description": "为企业提供定制化AI解决方案包括机器学习、计算机视觉和自然语言处理等。"
},
{
"name": "大数据分析",
"description": "通过先进的数据分析技术,帮助企业挖掘数据价值,优化决策过程。"
},
{
"name": "数字化转型咨询",
"description": "为企业提供全面的数字化转型战略规划和技术实施支持。"
}
],
"services": [
{
"name": "人工智能解决方案",
"description": "为企业提供定制化AI解决方案包括机器学习、计算机视觉和自然语言处理等。"
},
{
"name": "大数据分析",
"description": "通过先进的数据分析技术,帮助企业挖掘数据价值,优化决策过程。"
},
{
"name": "数字化转型咨询",
"description": "为企业提供全面的数字化转型战略规划和技术实施支持。"
}
],
"contact": {
"address": "香港上環永樂街93-103號協成行上環中心10樓1004室",
"Tel": "+852 35856298",
"Fax": "+852 31862366",
"Email": "Sec.Info@fuzsec.com"
}
}
# 数据存储配置
DATA_DIR = "data"
LOG_DIR = "logs"