Files
lotteryLaravel/app/Lottery/ConfigVersionStatus.php

19 lines
450 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Lottery;
/**
* 玩法配置 / 赔率 / 风控封顶 共用版本状态play_config_versions 等表 {@see status})。
*/
enum ConfigVersionStatus: string
{
/** 草稿:可整表替换 items */
case Draft = 'draft';
/** 当前对玩家与下注逻辑生效的版本(每类最多一条) */
case Active = 'active';
/** 已被新版本替代,仅作历史查询 */
case Archived = 'archived';
}