18 lines
300 B
Go
18 lines
300 B
Go
package public
|
|
|
|
// Currency 货币类型枚举
|
|
type Currency string
|
|
|
|
const (
|
|
CurrencyCNY Currency = "CNY" // 人民币
|
|
CurrencyUSD Currency = "USD" // 美元
|
|
)
|
|
|
|
// GetAllCurrencies 获取所有货币类型
|
|
func GetAllCurrencies() []Currency {
|
|
return []Currency{
|
|
CurrencyCNY,
|
|
CurrencyUSD,
|
|
}
|
|
}
|