yjp il y a 8 mois
Parent
commit
6f64cbaf7d
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  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
+}