yjp 8 mesi fa
parent
commit
6f64cbaf7d
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  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
+}