Merge remote-tracking branch 'origin/master'

This commit is contained in:
钱纯净
2025-11-02 21:59:20 +08:00
6 changed files with 48 additions and 14 deletions

View File

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