21 lines
332 B
PHP
Executable File
21 lines
332 B
PHP
Executable File
<?php
|
||
|
||
namespace App\Enum;
|
||
/**
|
||
* 状态码定义
|
||
*/
|
||
enum StatusEnum: int
|
||
{
|
||
|
||
// 状态 0:正常 1:禁用
|
||
case NORMAL = 0;
|
||
case DISABLE = 1;
|
||
public function description(): string
|
||
{
|
||
return match ($this) {
|
||
self::NORMAL => '正常',
|
||
self::DISABLE => '禁用',
|
||
};
|
||
}
|
||
}
|