修改exchangeRate字段

master_zzxx_01
DESKTOP-C3M45P4\dengdan 2024-08-29 10:12:08 +08:00
parent c068430102
commit 9d8fb664bf
1 changed files with 9 additions and 0 deletions

View File

@ -28,6 +28,8 @@ public class SExchangeRate implements BaseConfig {
private float price_8; private float price_8;
private float price_9;
public static HashMap<Integer, HashMap<Integer, Double>> doubleIntegerHashMap = new HashMap<>(); //币种 原货币 本货币 public static HashMap<Integer, HashMap<Integer, Double>> doubleIntegerHashMap = new HashMap<>(); //币种 原货币 本货币
@ -103,5 +105,12 @@ public class SExchangeRate implements BaseConfig {
return price_7; return price_7;
} }
public float getPrice_8() {
return price_8;
}
public float getPrice_9() {
return price_9;
}
} }