CurrencyEntity
Table: currency.
- id: number — primary key
- currency: string — full name (e.g. US Dollar)
- symbol: string — e.g. $
- code: string — ISO code (e.g. USD)
- decimalPlace: number — display decimals
CurrencyExchangeRateEnity
Table: currency_exchange_rate. Class name is misspelled in core (Enity).
- id: number — primary key
- fromCurrencyId / toCurrencyId: number
- rate: number — conversion rate
- fromCurrency / toCurrency: CurrencyEntity