This commit is contained in:
yanweidong
2026-02-03 16:36:15 +08:00
parent abe029c610
commit a4a38524df

View File

@@ -38,6 +38,9 @@ func main() {
// 过滤无需AI分析 // 过滤无需AI分析
if model.StScore > 0 && model.IndustryScore > 0 && model.GtPrice > 0 && model.GtAmount > 0 && model.GtRoe > 0 { if model.StScore > 0 && model.IndustryScore > 0 && model.GtPrice > 0 && model.GtAmount > 0 && model.GtRoe > 0 {
stratRule.RunAi(code) stratRule.RunAi(code)
} else {
model.AiScrore = -1
model.AddDesc("无需AI分析")
} }
} }