From 095adc6f82d971230bd2db7a6779e963c112832e Mon Sep 17 00:00:00 2001 From: dengbiao Date: Wed, 4 Dec 2024 20:20:19 +0800 Subject: [PATCH] update --- app/hdl/hdl_wallet.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/hdl/hdl_wallet.go b/app/hdl/hdl_wallet.go index b5a6c1e..962dd88 100644 --- a/app/hdl/hdl_wallet.go +++ b/app/hdl/hdl_wallet.go @@ -252,8 +252,10 @@ func WithdrawApply(c *gin.Context) { //4、新增提现记录 now := time.Now() + id := utils.StrToInt64(utils.OrderUUID(int(user.Id))) finWithdrawApplyDb := implement.NewFinWithdrawApplyDb(db.Db) finWithdrawApply := &model.FinWithdrawApply{ + Id: id, Uid: user.Id, AdmId: 0, Amount: req.Amount,