This commit is contained in:
yanweidong
2026-01-30 21:02:02 +08:00
parent 03bcce8007
commit e38e584535
7 changed files with 5510 additions and 5513 deletions

View File

@@ -1,19 +1,19 @@
package types
type RuleResult struct {
Key string
Name string
Score int
Roe float64
Rsi float64
Desc string
Key string
Name string
Score int
Result any
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"`
Code string `csv:"code"`
Name string `csv:"name"`
ROE float64 `csv:"roe"`
RSI float64 `csv:"rsi"`
Desc string `csv:"desc"`
Score int
Pass string `csv:"pass"`
}