17 lines
380 B
PHP
17 lines
380 B
PHP
<?php
|
|
|
|
namespace App\Lottery;
|
|
|
|
/** 开奖批次状态 {@see draw_result_batches.status} */
|
|
enum DrawResultBatchStatus: string
|
|
{
|
|
/** RNG/人工录入完成,等待审核 */
|
|
case PendingReview = 'pending_review';
|
|
|
|
/** 已发布为当期有效结果 */
|
|
case Published = 'published';
|
|
|
|
/** 审核驳回(本阶段仅占位) */
|
|
case Rejected = 'rejected';
|
|
}
|