From b17d7a7d513b47919bee01009e8c8a4b587f06b3 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Thu, 23 Nov 2023 18:06:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- md/appreciation.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/md/appreciation.go b/md/appreciation.go index fe78857..cb4794b 100644 --- a/md/appreciation.go +++ b/md/appreciation.go @@ -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"` //提现回流增值积分比例 }