Ken 3 days ago
parent
commit
737096fb35

+ 0 - 8
app/Http/Controllers/api/TelegramWebHook.php

@@ -422,14 +422,6 @@ class TelegramWebHook extends Controller
                         $user->save();
                         //给每个用户生成一个专属的USDT钱包
                         WalletService::getUserWallet($chatId);
-
-
-                        $now = Carbon::now('America/New_York')->format('Y-m-d H:i:s');
-                        $telegram = new Api(config('services.telegram.token'));
-                        $telegram->sendMessage([
-                            'chat_id' => $chatId,
-                            'text' => $now
-                        ]);
                         $this->setReplyKeyboard($chatId);
                         break;
                     case "近期注单":

+ 48 - 0
app/Models/Rebate.php

@@ -0,0 +1,48 @@
+<?php
+
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Builder;
+use Illuminate\Foundation\Auth\User as Authenticatable;
+use Illuminate\Notifications\Notifiable;
+use Laravel\Sanctum\HasApiTokens;
+
+/**
+ * @mixin Builder
+ * @method static Builder|static where($column, $operator = null, $value = null, $boolean = 'and')
+ */
+class Rebate extends Authenticatable
+{
+    use HasApiTokens, Notifiable;
+
+    protected $table = 'users';
+    protected $hidden = ['created_at', 'updated_at'];
+    protected $fillable = ['date', 'member_id', 'betting_amount', 'rebate_ratio', 'amount', 'status'];
+
+
+    static function addOrUpdate($data)
+    {
+        $rebate = static::where('date', $data['date'])
+            ->where('member_id', $data['member_id'])->first();
+        if ($rebate) {
+            $rebate->increment("betting_amount", $data['betting_amount']);
+        } else {
+            $rebate = static::create($data);
+        }
+        return $rebate;
+    }
+
+
+    protected function getCreatedAtAttribute($value)
+    {
+        return \Carbon\Carbon::parse($value)->setTimezone('Asia/Shanghai')->format('Y-m-d H:i:s');
+    }
+
+    protected function getUpdatedAtAttribute($value)
+    {
+        return \Carbon\Carbon::parse($value)->setTimezone('Asia/Shanghai')->format('Y-m-d H:i:s');
+    }
+
+
+}

+ 127 - 121
app/Services/BetService.php

@@ -4,9 +4,11 @@
 namespace App\Services;
 
 use App\Http\Controllers\admin\GameplayRule;
+use App\Models\Rebate;
 use App\Services\BaseService;
 use App\Models\Bet;
 use App\Models\Config;
+use Carbon\Carbon;
 use Illuminate\Support\Facades\DB;
 use Illuminate\Support\Collection;
 use Illuminate\Support\Facades\Cache;
@@ -20,14 +22,14 @@ use App\Services\BalanceLogService;
 
 /**
  * 投注
-*/
-class BetService extends BaseService 
+ */
+class BetService extends BaseService
 {
     /**
      * @description: 模型
      * @return {string}
-     */    
-    public static function model() :string
+     */
+    public static function model(): string
     {
         return Bet::class;
     }
@@ -35,8 +37,8 @@ class BetService extends BaseService
     /**
      * @description: 枚举
      * @return {*}
-     */    
-    public static function enum() :string
+     */
+    public static function enum(): string
     {
         return '';
     }
@@ -45,35 +47,35 @@ class BetService extends BaseService
      * @description: 获取查询条件
      * @param {array} $search 查询内容
      * @return {array}
-     */    
-    public static function getWhere(array $search = []) :array
+     */
+    public static function getWhere(array $search = []): array
     {
         $where = [];
-        if(isset($search['issue_no']) && !empty($search['issue_no'])){
+        if (isset($search['issue_no']) && !empty($search['issue_no'])) {
             $where[] = ['issue_no', '=', $search['issue_no']];
         }
-        if(isset($search['member_id']) && !empty($search['member_id'])){
+        if (isset($search['member_id']) && !empty($search['member_id'])) {
             $where[] = ['member_id', '=', $search['member_id']];
         }
-        if(isset($search['keywords']) && !empty($search['keywords'])){
+        if (isset($search['keywords']) && !empty($search['keywords'])) {
             $where[] = ['keywords', '=', $search['keywords']];
         }
-        if(isset($search['issue_id']) && !empty($search['issue_id'])){
+        if (isset($search['issue_id']) && !empty($search['issue_id'])) {
             $where[] = ['issue_id', '=', $search['issue_id']];
         }
-        if(isset($search['id']) && !empty($search['id'])){
+        if (isset($search['id']) && !empty($search['id'])) {
             $where[] = ['id', '=', $search['id']];
         }
-        if(isset($search['user_id']) && !empty($search['user_id'])){
+        if (isset($search['user_id']) && !empty($search['user_id'])) {
             $where[] = ['user_id', '=', $search['user_id']];
         }
-        if(isset($search['status']) && !empty($search['status'])){
+        if (isset($search['status']) && !empty($search['status'])) {
             $where[] = ['status', '=', $search['status']];
         }
         return $where;
     }
 
-     /**
+    /**
      * @description: 查询单条数据
      * @param array $search
      * @return \App\Models\Coin|null
@@ -100,7 +102,7 @@ class BetService extends BaseService
      */
     public static function paginate(array $search = [])
     {
-        $limit = isset($search['limit'])?$search['limit']:15;
+        $limit = isset($search['limit']) ? $search['limit'] : 15;
         $paginator = self::model()::where(self::getWhere($search))->paginate($limit);
         return ['total' => $paginator->total(), 'data' => $paginator->items()];
     }
@@ -110,25 +112,25 @@ class BetService extends BaseService
      * @param {string} $memberId
      * @param {string} $input
      * @return {*}
-     */    
-    public static function bet(string $memberId,string $input ,$messageId = 0)
+     */
+    public static function bet(string $memberId, string $input, $messageId = 0)
     {
         $msg = [];
         $msg['chat_id'] = $memberId;
 
         // 钱包生成
         // $walletInfo = WalletService::getUserWallet($memberId);
-        
+
 
         // 分解投注的内容
         $betResult = GameplayRuleService::bettingRuleVerify($input);
 
         $serviceAccount = Config::where('field', 'service_account')->first()->val;
-        if($betResult == null){
+        if ($betResult == null) {
             $text = "消息格式错误!\n";
             $text .= "任何疑问都可以联系唯一财务:@{$serviceAccount}";
             $msg['text'] = $text;
-            if($messageId){
+            if ($messageId) {
                 $msg['reply_to_message_id'] = $messageId;
             }
             return $msg;
@@ -138,21 +140,21 @@ class BetService extends BaseService
         $amount = $betResult['amount'];    // 投注金额
 
         $gameplayRuleInfo = GameplayRuleService::getGameplayRules($keywords);
-        if($gameplayRuleInfo == null){
+        if ($gameplayRuleInfo == null) {
             $text = "玩法未配置!\n";
             $text .= "任何疑问都可以联系唯一财务:@{$serviceAccount}";
             $msg['text'] = $text;
-            if($messageId){
+            if ($messageId) {
                 $msg['reply_to_message_id'] = $messageId;
             }
             return $msg;
         }
 
-        if($gameplayRuleInfo['odds'] <= 0){
+        if ($gameplayRuleInfo['odds'] <= 0) {
             $text = "赔率为0 庄家通吃 禁止投注!\n";
             $text .= "任何疑问都可以联系唯一财务:@{$serviceAccount}";
             $msg['text'] = $text;
-            if($messageId){
+            if ($messageId) {
                 $msg['reply_to_message_id'] = $messageId;
             }
             return $msg;
@@ -160,22 +162,22 @@ class BetService extends BaseService
         }
 
         // 期数验证
-        $issueInfo = IssueService::model()::where('status',IssueService::model()::STATUS_BETTING)->orderBy('id','desc')->first();
-        if(empty($issueInfo)){
-            $issueCloseInfo = IssueService::model()::where('status',IssueService::model()::STATUS_CLOSE)->orderBy('id','desc')->first();
-            if(empty($issueCloseInfo)){
+        $issueInfo = IssueService::model()::where('status', IssueService::model()::STATUS_BETTING)->orderBy('id', 'desc')->first();
+        if (empty($issueInfo)) {
+            $issueCloseInfo = IssueService::model()::where('status', IssueService::model()::STATUS_CLOSE)->orderBy('id', 'desc')->first();
+            if (empty($issueCloseInfo)) {
                 $text = "暂无可下注期数,本次下注无效!\n";
 
                 $msg['text'] = $text;
-                if($messageId){
+                if ($messageId) {
                     $msg['reply_to_message_id'] = $messageId;
                 }
                 return $msg;
-            }else{
+            } else {
                 $text = "封盘中,本次下注无效!\n";
 
                 $msg['text'] = $text;
-                if($messageId){
+                if ($messageId) {
                     $msg['reply_to_message_id'] = $messageId;
                 }
                 return $msg;
@@ -183,31 +185,31 @@ class BetService extends BaseService
         }
 
 
-        if(!is_numeric($amount) || $amount <= 0){
+        if (!is_numeric($amount) || $amount <= 0) {
             $text = "投注金额格式不正确!\n";
             $text .= "任何疑问都可以联系唯一财务:@{$serviceAccount}";
             $msg['text'] = $text;
-            if($messageId){
+            if ($messageId) {
                 $msg['reply_to_message_id'] = $messageId;
             }
             return $msg;
         }
 
         // 投注限制校验
-        if($amount < $gameplayRuleInfo['mininum']){
+        if ($amount < $gameplayRuleInfo['mininum']) {
             $text = "下注失败,最小金额限制{$gameplayRuleInfo['mininum']}\n";
             $msg['text'] = $text;
-            if($messageId){
+            if ($messageId) {
                 $msg['reply_to_message_id'] = $messageId;
             }
             return $msg;
         }
 
         // 投注限制校验
-        if($amount > $gameplayRuleInfo['maxinum']){
+        if ($amount > $gameplayRuleInfo['maxinum']) {
             $text = "下注失败,最大金额限制{$gameplayRuleInfo['maxinum']}\n";
             $msg['text'] = $text;
-            if($messageId){
+            if ($messageId) {
                 $msg['reply_to_message_id'] = $messageId;
             }
             return $msg;
@@ -215,47 +217,52 @@ class BetService extends BaseService
 
         // 获取用户余额
         $walletInfo = WalletService::findOne(['member_id' => $memberId]);
-        $balance = $walletInfo['available_balance']; 
+        $balance = $walletInfo['available_balance'];
 
         // 余额计算
-        if($balance < $amount){
+        if ($balance < $amount) {
             $text = "余额不足,本次下注无效!\n";
             $msg['text'] = $text;
-            if($messageId){
+            if ($messageId) {
                 $msg['reply_to_message_id'] = $messageId;
             }
             return $msg;
         }
 
 
-        
-
         $userInfo = UserService::findOne(['member_id' => $memberId]);
 
-        $betInfo = self::findOne(['member_id' => $memberId,'issue_no' => $issueInfo->issue_no,'keywords' => $keywords]); // 相同下注
+        $betInfo = self::findOne(['member_id' => $memberId, 'issue_no' => $issueInfo->issue_no, 'keywords' => $keywords]); // 相同下注
 
-        if($betInfo){
+        if ($betInfo) {
             $betInfo->amount = $betInfo->amount + $amount;
             $bet_id = $betInfo->id;
             $betInfo->save();
-        }else{
+        } else {
             $data = [];
             $data['amount'] = $amount; // 分数
             $data['keywords'] = $keywords;  // 玩法
-            $data['member_id'] = $memberId; 
-            $data['user_id'] = $userInfo->id; 
-            $data['issue_no'] = $issueInfo->issue_no; 
-            $data['issue_id'] = $issueInfo->id; 
+            $data['member_id'] = $memberId;
+            $data['user_id'] = $userInfo->id;
+            $data['issue_no'] = $issueInfo->issue_no;
+            $data['issue_id'] = $issueInfo->id;
             $data['odds'] = $gameplayRuleInfo['odds'];
             $newBet = self::model()::create($data);
             $bet_id = $newBet->id;
         }
-        
 
-        WalletService::updateBalance($memberId,-$amount);
 
-        BalanceLogService::addLog($memberId,-$amount,$balance,($balance-$amount),'投注',$bet_id,'');
+        WalletService::updateBalance($memberId, -$amount);
+
+        BalanceLogService::addLog($memberId, -$amount, $balance, ($balance - $amount), '投注', $bet_id, '');
 
+
+        $now = Carbon::now('America/New_York')->format('Y-m-d');
+        Rebate::addOrUpdate([
+            'date' => $now,
+            'member_id' => $memberId,
+            'betting_amount'=>$amount,
+        ]);
         // // 返利
         // $rebate = Config::where('field', 'rebate')->first()->val;
         // if($rebate > 0){
@@ -279,21 +286,21 @@ class BetService extends BaseService
         $text .= "下注成功\n";
         $msg['text'] = $text;
 
-        $lastStr = self::getLastChar($userInfo->first_name,1);
+        $lastStr = self::getLastChar($userInfo->first_name, 1);
 
         $groupText = "";
-        $groupText .= "私聊下注 【xxxxxx".$lastStr."】 \n";
+        $groupText .= "私聊下注 【xxxxxx" . $lastStr . "】 \n";
         $groupText .= "下注期数:{$issueInfo->issue_no} \n";
         $groupText .= "下注内容: \n";
         $groupText .= "----------- \n";
         $groupText .= "{$input} \n";
         $groupText .= "----------- \n";
 
-        
+
         $inlineButton = self::getOperateButton();
-        
-         // 群通知
-        self::bettingGroupNotice($groupText,$inlineButton);   // 群通知
+
+        // 群通知
+        self::bettingGroupNotice($groupText, $inlineButton);   // 群通知
 
         return $msg;
     }
@@ -302,49 +309,48 @@ class BetService extends BaseService
     // 模拟下注
     public static function fakeBet()
     {
-        
+
         // 期数验证
-        $issueInfo = IssueService::model()::where('status',IssueService::model()::STATUS_BETTING)->orderBy('id','desc')->first();
-        if($issueInfo){
-            $fake_bet_list = Cache::get('fake_bet_'.$issueInfo->issue_no,[]);
+        $issueInfo = IssueService::model()::where('status', IssueService::model()::STATUS_BETTING)->orderBy('id', 'desc')->first();
+        if ($issueInfo) {
+            $fake_bet_list = Cache::get('fake_bet_' . $issueInfo->issue_no, []);
 
-            $gameplayRuleList = GameplayRuleService::model()::where('odds','>',0)->get();
+            $gameplayRuleList = GameplayRuleService::model()::where('odds', '>', 0)->get();
             $gameplayRuleList = $gameplayRuleList->toArray();
-            $randKey = array_rand($gameplayRuleList,1);
-            $gameplayRuleInfo = $gameplayRuleList[$randKey]??[];
-            if($gameplayRuleInfo){
-                
+            $randKey = array_rand($gameplayRuleList, 1);
+            $gameplayRuleInfo = $gameplayRuleList[$randKey] ?? [];
+            if ($gameplayRuleInfo) {
+
 
                 $item = [];
                 $item['keywords'] = $gameplayRuleInfo['keywords'];
                 $item['odds'] = $gameplayRuleInfo['odds'];
-                $item['amount'] = rand($gameplayRuleInfo['mininum'],$gameplayRuleInfo['maxinum']);
+                $item['amount'] = rand($gameplayRuleInfo['mininum'], $gameplayRuleInfo['maxinum']);
                 $item['first_name'] = self::generateRandomString(6);
                 $item['profit'] = 0;
-                $input = $item['keywords'].$item['amount'];
+                $input = $item['keywords'] . $item['amount'];
 
                 $fake_bet_list[] = $item;
 
-                $lastStr = self::getLastChar($item['first_name'],1);
+                $lastStr = self::getLastChar($item['first_name'], 1);
 
                 $groupText = "";
-                $groupText .= "私聊下注 【xxxxxx".$lastStr."】 \n";
+                $groupText .= "私聊下注 【xxxxxx" . $lastStr . "】 \n";
                 $groupText .= "下注期数:{$issueInfo->issue_no} \n";
                 $groupText .= "下注内容: \n";
                 $groupText .= "----------- \n";
                 $groupText .= "{$input} \n";
                 $groupText .= "----------- \n";
 
-                
+
                 $inlineButton = self::getOperateButton();
-                
+
                 // 群通知
-                self::bettingGroupNotice($groupText,$inlineButton);   // 群通知
+                self::bettingGroupNotice($groupText, $inlineButton);   // 群通知
             }
 
-            Cache::put('fake_bet_'.$issueInfo->issue_no,$fake_bet_list,500);
+            Cache::put('fake_bet_' . $issueInfo->issue_no, $fake_bet_list, 500);
 
-            
 
         }
     }
@@ -353,35 +359,35 @@ class BetService extends BaseService
      * @description: 当期下注
      * @param {*} $memberId
      * @return {*}
-     */    
+     */
     public static function currentBet($memberId)
     {
         $msg['chat_id'] = $memberId;
-         // 期数验证
-        $issueInfo = IssueService::model()::where('status',IssueService::model()::STATUS_BETTING)->orderBy('id','desc')->first();
+        // 期数验证
+        $issueInfo = IssueService::model()::where('status', IssueService::model()::STATUS_BETTING)->orderBy('id', 'desc')->first();
         $issue_no = '';
-        if(!empty($issueInfo)){
+        if (!empty($issueInfo)) {
             $issue_no = $issueInfo->issue_no;
-        }else{
-            $issueCloseInfo = IssueService::model()::where('status',IssueService::model()::STATUS_CLOSE)->orderBy('id','desc')->first();
-            if(empty($issueCloseInfo)){
+        } else {
+            $issueCloseInfo = IssueService::model()::where('status', IssueService::model()::STATUS_CLOSE)->orderBy('id', 'desc')->first();
+            if (empty($issueCloseInfo)) {
                 $issue_no = $issueCloseInfo->issue_no;
             }
         }
 
-        if($issue_no){
+        if ($issue_no) {
             $text = "当前期号:{$issue_no} \n";
             $text .= "\n";
             $text .= "----------\n";
-            $list = self::findAll(['member_id' => $memberId ,'issue_no' => $issue_no]);
-            foreach($list->toArray() as $k => $v){
+            $list = self::findAll(['member_id' => $memberId, 'issue_no' => $issue_no]);
+            foreach ($list->toArray() as $k => $v) {
                 $text .= "{$v['keywords']}{$v['amount']} \n";
             }
 
             $text .= "\n";
             $text .= "----------\n";
             $msg['text'] = $text;
-        }else{
+        } else {
             $msg['text'] = "当前没有开放的投注期数! \n";
         }
 
@@ -392,18 +398,18 @@ class BetService extends BaseService
      * @description: 近期投注
      * @param {*} $memberId
      * @return {*}
-     */    
-    public static function recentlyRecord($memberId ,$page = 1 ,$limit = 5)
+     */
+    public static function recentlyRecord($memberId, $page = 1, $limit = 5)
     {
-        $list = self::model()::where('member_id',$memberId)->whereIn('status',[self::model()::STATUS_STAY,self::model()::STATUS_SETTLED])->orderBy('id','desc')->forPage($page, $limit)->get();
+        $list = self::model()::where('member_id', $memberId)->whereIn('status', [self::model()::STATUS_STAY, self::model()::STATUS_SETTLED])->orderBy('id', 'desc')->forPage($page, $limit)->get();
 
         // $text = "```\n";
         $text = "";
         $text .= "期数--内容--盈亏 \n";
-        foreach($list->toArray() as $k => $v){
+        foreach ($list->toArray() as $k => $v) {
             $profit = $v['profit'] - $v['amount'];
             // $text .= $v['issue_no']." ".$v['keywords']." ".$v['amount']." ".$v['profit']."\n";
-            $item = $v['issue_no']."==".$v['keywords'].rtrim(rtrim(number_format($v['amount'], 2, '.', ''), '0'), '.')."==".rtrim(rtrim(number_format($profit, 2, '.', ''), '0'), '.')."\n";
+            $item = $v['issue_no'] . "==" . $v['keywords'] . rtrim(rtrim(number_format($v['amount'], 2, '.', ''), '0'), '.') . "==" . rtrim(rtrim(number_format($profit, 2, '.', ''), '0'), '.') . "\n";
             $text .= $item;
         }
         // $text .= "```\n";
@@ -418,18 +424,18 @@ class BetService extends BaseService
      * @param {*} $page
      * @param {*} $limit
      * @return {*}
-     */    
-    public static function record($memberId ,$messageId = null ,$page = 1 ,$limit = 5)
+     */
+    public static function record($memberId, $messageId = null, $page = 1, $limit = 5)
     {
         $msg['chat_id'] = $memberId;
-        $list = self::model()::where('member_id',$memberId)->whereIn('status',[self::model()::STATUS_STAY,self::model()::STATUS_SETTLED])->orderBy('id','desc')->forPage($page, $limit)->get();
-        $count = self::model()::where('member_id',$memberId)->whereIn('status',[self::model()::STATUS_STAY,self::model()::STATUS_SETTLED])->count();
+        $list = self::model()::where('member_id', $memberId)->whereIn('status', [self::model()::STATUS_STAY, self::model()::STATUS_SETTLED])->orderBy('id', 'desc')->forPage($page, $limit)->get();
+        $count = self::model()::where('member_id', $memberId)->whereIn('status', [self::model()::STATUS_STAY, self::model()::STATUS_SETTLED])->count();
 
         $keyboard = [];
 
         $text = "历史注单 \n";
 
-        foreach($list as $k => $v){
+        foreach ($list as $k => $v) {
             $phase = $v->profit - $v->amount;
             $text .= "-------------------------------------\n";
             $text .= "期数:{$v->issue_no} \n";
@@ -455,10 +461,10 @@ class BetService extends BaseService
                 ];
             }
         }
-        if($messageId){
+        if ($messageId) {
             $msg['message_id'] = $messageId;
         }
-        if($keyboard){
+        if ($keyboard) {
             $msg['reply_markup'] = json_encode(['inline_keyboard' => $keyboard]);
         }
         return $msg;
@@ -469,56 +475,56 @@ class BetService extends BaseService
      * @param {*} $issue_no
      * @param {*} $awards
      * @return {*}
-     */    
-    public static function betSettled($issue_no,$awards)
+     */
+    public static function betSettled($issue_no, $awards)
     {
-        $list = self::findAll(['issue_no' => $issue_no ,'status' => self::model()::STATUS_STAY]);
+        $list = self::findAll(['issue_no' => $issue_no, 'status' => self::model()::STATUS_STAY]);
 
         $data = [];
-        $text = $issue_no."期开奖结果 \n";
+        $text = $issue_no . "期开奖结果 \n";
         $text .= "-----本期开奖账单----- \n";
 
         $bet_num = 0;
-        foreach($list->toArray() as $k => $v){
+        foreach ($list->toArray() as $k => $v) {
             $userInfo = UserService::findAll(['member_id' => $v['member_id']]);
-            $lastStr = self::getLastChar($userInfo->first_name,1);
+            $lastStr = self::getLastChar($userInfo->first_name, 1);
             $item = [];
             $item['id'] = $v['id'];
-            $item['status'] =  self::model()::STATUS_SETTLED;
+            $item['status'] = self::model()::STATUS_SETTLED;
 
-            if(in_array($v['keywords'],$awards)){
+            if (in_array($v['keywords'], $awards)) {
                 $profit = $v['amount'] * $v['odds'];
-                if($profit > 880000){
+                if ($profit > 880000) {
                     $profit = 880000; // 单注最高奖金880000
                 }
                 $item['profit'] = $profit;
 
                 $yl = $profit - $v['amount'];
-                if($k+1 <= 15){
+                if ($k + 1 <= 15) {
 
-                    $text .= "私聊下注 【******".$lastStr."】 {$yl}\n";
+                    $text .= "私聊下注 【******" . $lastStr . "】 {$yl}\n";
                     $bet_num++;
                 }
                 // 结算
-                WalletService::updateBalance($v['member_id'],$profit);
+                WalletService::updateBalance($v['member_id'], $profit);
 
                 $walletInfo = WalletService::findOne(['member_id' => $v['member_id']]);
-                $balance = $walletInfo['available_balance']; 
+                $balance = $walletInfo['available_balance'];
 
-                BalanceLogService::addLog($v['member_id'],$profit,$balance,($balance+$profit),'中奖',$v['id'],'');
-            }else{
-                if($k+1 <= 15){
-                    $text .= "私聊下注 【******".$lastStr."】 -{$v['amount']}\n";
+                BalanceLogService::addLog($v['member_id'], $profit, $balance, ($balance + $profit), '中奖', $v['id'], '');
+            } else {
+                if ($k + 1 <= 15) {
+                    $text .= "私聊下注 【******" . $lastStr . "】 -{$v['amount']}\n";
                     $bet_num++;
                 }
             }
 
-            self::model()::where('id',$v['id'])->update($item);
+            self::model()::where('id', $v['id'])->update($item);
         }
         $inlineButton = self::getOperateButton();
 
         $rand_num = 30 - $bet_num;
-        for($i=0;$i<$rand_num;$i++){
+        for ($i = 0; $i < $rand_num; $i++) {
             // 生成 -100000 到 100000 的随机数,但排除 -10 到 10 的范围
             $randomNumber = random_int(-1000000, 1000000) / 100;
             if ($randomNumber >= -10 && $randomNumber <= 10) {
@@ -528,7 +534,7 @@ class BetService extends BaseService
             $text .= "私聊下注 【******】 {$randomNumber}\n";
         }
 
-         // 群通知
+        // 群通知
         self::bettingGroupNotice($text, $inlineButton, '');
     }
 

+ 38 - 0
database/migrations/2025_10_31_145445_create_rebates.php

@@ -0,0 +1,38 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration {
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::create('rebates', function (Blueprint $table) {
+            $table->id();
+            $table->string('date')->comment('日期');
+            $table->string('member_id')->comment('tg id');
+
+            $table->decimal('betting_amount', 10, 2)->comment('投注额');
+            $table->decimal('rebate_ratio', 10, 2)->nullable()->comment('返佣比例');
+            $table->decimal('amount', 10, 2)->default(0)->comment('返佣金额');
+            $table->tinyInteger('status')->default(0)->comment('0未返佣,1已返佣');
+
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('rebates');
+    }
+};