This commit is contained in:
aozhiwei 2024-08-07 17:35:27 +08:00
parent fbd911772e
commit 81890d6374

View File

@ -13,6 +13,12 @@ type RechargeCurrency struct {
currencyDecimal int64
}
func (this *RechargeCurrency) init(currencyName string, exchangeRate int64, currencyDecimal int64) {
this.currencyName = currencyName
this.exchangeRate = exchangeRate
this.currencyDecimal = currencyDecimal
}
func (this *RechargeCurrency) GetCurrencyName() string {
return this.currencyName
}