订单分佣规则
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 rader
1.0 KiB

  1. package md
  2. import "github.com/shopspring/decimal"
  3. var (
  4. WithdrawalCommissionFee = decimal.NewFromFloat(0.15) //提现手续费比例
  5. WithdrawalDestroyFee = decimal.NewFromFloat(0.05) //提现销毁增值积分比例
  6. WithdrawalRefluxFee = decimal.NewFromFloat(0.10) //提现回流增值积分比例
  7. )
  8. type DealWithdrawalAndDestroyResp struct {
  9. TransferOut float64 `json:"transfer_out"` //提现的积分
  10. TransferOutValue float64 `json:"transfer_out_value"` //提现的余额
  11. AmountOut float64 `json:"amount_out"` //手续费
  12. DestroyValue float64 `json:"destroy_value"` //销毁的积分
  13. RefluxValue float64 `json:"reflux_value"` //回流的积分
  14. }
  15. type DealWithdrawalFeeResp struct {
  16. WithdrawalCommissionFee float64 `json:"withdrawal_commission_fee"` //提现手续费比例
  17. WithdrawalDestroyFee float64 `json:"withdrawal_destroy_fee"` //提现销毁增值积分比例
  18. WithdrawalRefluxFee float64 `json:"withdrawal_reflux_fee"` //提现回流增值积分比例
  19. }