Browse Source

添加函数

yjp 8 tháng trước cách đây
mục cha
commit
6f64cbaf7d
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  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
+}