feat: 添加结算功能,更新 TicketItem 模型以支持最新结算详情,增强 DrawTickService 以自动处理结算,更新 TicketWalletService 以支持派彩入账,扩展 API 路由以管理结算批次和奖池
This commit is contained in:
13
app/Lottery/SettlementBatchStatus.php
Normal file
13
app/Lottery/SettlementBatchStatus.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Lottery;
|
||||
|
||||
/** {@see settlement_batches.status} — 阶段 6 结算批次 */
|
||||
enum SettlementBatchStatus: string
|
||||
{
|
||||
case Running = 'running';
|
||||
|
||||
case Completed = 'completed';
|
||||
|
||||
case Failed = 'failed';
|
||||
}
|
||||
Reference in New Issue
Block a user