From 5877f155a8641a5bfbf3b37c21f597912b1e8494 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Wed, 22 Nov 2023 14:38:03 +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 --- app/svc/platform/svc_withdrawal.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/svc/platform/svc_withdrawal.go b/app/svc/platform/svc_withdrawal.go index 1c1db0c..f824a1e 100644 --- a/app/svc/platform/svc_withdrawal.go +++ b/app/svc/platform/svc_withdrawal.go @@ -131,11 +131,11 @@ func WithdrawalDoing(c *gin.Context) { masterListCfgDb.Set() withdrawalBili := masterListCfgDb.MasterListCfgGetOneData(puid, "withdrawal_bili") invoiceBili := masterListCfgDb.MasterListCfgGetOneData(puid, "invoice_bili") - withdrawalDay := masterListCfgDb.MasterListCfgGetOneData(puid, "withdrawal_day") - if time.Now().Day() != utils.StrToInt(withdrawalDay) && utils.StrToInt(withdrawalDay) > 0 { - e.OutErr(c, 400, e.NewErr(400, "每月"+withdrawalDay+"号提现")) - return - } + //withdrawalDay := masterListCfgDb.MasterListCfgGetOneData(puid, "withdrawal_day") + //if time.Now().Day() != utils.StrToInt(withdrawalDay) && utils.StrToInt(withdrawalDay) > 0 { + // e.OutErr(c, 400, e.NewErr(400, "每月"+withdrawalDay+"号提现")) + // return + //} var fee float64 = 0 if utils.StrToFloat64(withdrawalBili) > 0 { bili := utils.StrToFloat64(withdrawalBili) / 100