From 60ce110dd6f550d17f2afee8d92962a08e2c3652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Wed, 17 Sep 2025 11:12:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E5=90=8D=E5=90=8E=20=E5=86=85?= =?UTF-8?q?=E6=B5=8B=E7=94=A8=E6=88=B7=E7=BB=9910W=E9=87=91=E5=B8=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/model/UserData.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/api/model/UserData.php b/application/api/model/UserData.php index 8792145..a7fb0a9 100644 --- a/application/api/model/UserData.php +++ b/application/api/model/UserData.php @@ -345,8 +345,8 @@ class UserData extends Model return ['code' => 0, 'msg' => '实名失败','data' =>null]; } - //内侧用户充值100W金币 - db::name('user_wallet')->where('user_id',$user_id)->update(['coin' => 1000000,'updatetime' => time(),'createtime' => time()]); + //内侧用户充值10W金币 + db::name('user_wallet')->where('user_id',$user_id)->update(['coin' => 100000,'updatetime' => time(),'createtime' => time()]); return ['code' => 1, 'msg' => '实名成功','data' =>null]; }