Files
tool-node/config.example.json
zhaojunlong a904137b60 fix(config): 调整金额阈值和描述以匹配10亿标准
将配置文件中的金额阈值从1亿调整为10亿,并更新相关描述。同时修改前端表单默认值,
确保与后端配置一致。
2025-12-15 18:31:33 +08:00

17 lines
404 B
JSON

{
"scheduler": {
"enabled": true,
"cronTime": "0 9 * * *",
"threshold": 100000,
"description": "每天9点采集大于10亿的项目",
"timeRange": "thisMonth"
},
"email": {
"smtpHost": "smtp.example.com",
"smtpPort": 587,
"smtpUser": "your-email@example.com",
"smtpPass": "your-password",
"recipients": "recipient1@example.com,recipient2@example.com"
}
}