feat: 拆分开奖与结算审核流程,新增手动结果录入、重开和派彩审批接口

This commit is contained in:
2026-05-16 18:01:06 +08:00
parent 83046b402d
commit 4f143c7cb1
38 changed files with 1992 additions and 170 deletions

View File

@@ -18,6 +18,11 @@ return new class extends Migration
$table->unsignedInteger('total_win_count')->default(0);
$table->bigInteger('total_payout_amount')->default(0);
$table->bigInteger('total_jackpot_payout_amount')->default(0);
$table->string('review_status', 32)->default('pending');
$table->foreignId('reviewed_by')->nullable()->constrained('admin_users')->nullOnDelete();
$table->timestamp('reviewed_at')->nullable();
$table->string('review_remark', 255)->nullable();
$table->timestamp('paid_at')->nullable();
$table->timestamp('started_at')->nullable();
$table->timestamp('finished_at')->nullable();
$table->timestamps();