Dockerfile

This commit is contained in:
2026-03-18 10:18:03 +08:00
parent 5c5dbc7420
commit b65f3439f3
189 changed files with 19027 additions and 0 deletions

17
consts/public/currency.go Normal file
View File

@@ -0,0 +1,17 @@
package public
// Currency 货币类型枚举
type Currency string
const (
CurrencyCNY Currency = "CNY" // 人民币
CurrencyUSD Currency = "USD" // 美元
)
// GetAllCurrencies 获取所有货币类型
func GetAllCurrencies() []Currency {
return []Currency{
CurrencyCNY,
CurrencyUSD,
}
}