money.go 163 B

1234567
  1. package money
  2. import "github.com/shopspring/decimal"
  3. func Yuan2Fen(price float64) int64 {
  4. return decimal.NewFromFloat(price).Mul(decimal.New(1, 2)).IntPart()
  5. }