package payment // ToWechatAmount 将金额转换为微信支付金额(单位:分) // 微信支付金额以分为单位,需要将元转换为分 func ToWechatAmount(amount float64) int64 { return int64(amount * 100) }