瀏覽代碼

添加函数

yjp 8 月之前
父節點
當前提交
6f64cbaf7d
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      money/money.go

+ 7 - 0
money/money.go

@@ -5,3 +5,10 @@ import "github.com/shopspring/decimal"
 func Yuan2Fen(price float64) int64 {
 	return decimal.NewFromFloat(price).Mul(decimal.New(1, 2)).IntPart()
 }
+
+func Fen2Yuan(price uint64) float64 {
+	//分除以100得到元
+	d := decimal.New(1, 2)
+	result, _ := decimal.NewFromInt(int64(price)).DivRound(d, 2).Float64()
+	return result
+}