Browse Source

更新

master
huangjiajun 1 year ago
parent
commit
afada753ea
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      md/appreciation.go

+ 2
- 2
md/appreciation.go View File

@@ -3,7 +3,7 @@ package md
import "github.com/shopspring/decimal"

var (
WithdrawalCommissionFee = decimal.NewFromFloat(0.15) //提现手续费
WithdrawalCommissionFee = decimal.NewFromFloat(0.15) //提现比例 扣了手续费
WithdrawalDestroyFee = decimal.NewFromFloat(0.05) //提现销毁增值积分比例
WithdrawalRefluxFee = decimal.NewFromFloat(0.10) //提现回流增值积分比例
)
@@ -15,7 +15,7 @@ type DealWithdrawalAndDestroyResp struct {
RefluxValue float64 `json:"reflux_value"`
}
type DealWithdrawalFeeResp struct {
WithdrawalCommissionFee float64 `json:"withdrawal_commission_fee"` //提现手续费
WithdrawalCommissionFee float64 `json:"withdrawal_commission_fee"` //提现比例 扣了手续费
WithdrawalDestroyFee float64 `json:"withdrawal_destroy_fee"` //提现销毁增值积分比例
WithdrawalRefluxFee float64 `json:"withdrawal_reflux_fee"` //提现回流增值积分比例
}

Loading…
Cancel
Save