Compare commits

..

1 Commits

Author SHA1 Message Date
injoyai
5c8091ac26 修复深圳指数历史分时成交价格小10倍的问题 2025-10-20 09:49:01 +08:00

View File

@@ -135,10 +135,10 @@ func basePrice(code string) Price {
return 1 return 1
} }
switch code[:2] { switch code[:2] {
case "60", "30", "68", "00", "92", "43": case "60", "30", "68", "00", "92", "43", "39":
return 1 return 1
default: default:
return 10 return 1
} }
} }