This commit is contained in:
yanweidong
2026-01-30 20:03:50 +08:00
parent efa83b0c96
commit 03bcce8007
3 changed files with 101 additions and 82 deletions

View File

@@ -8,3 +8,12 @@ type RuleResult struct {
Rsi float64
Desc string
}
type ResultData struct { // Our example struct, you can use "-" to ignore a field
Code string `csv:"code"`
Name string `csv:"name"`
ROE float64 `csv:"roe"`
RSI float64 `csv:"rsi"`
Desc string `csv:"desc"`
Pass string `csv:"pass"`
}