18 lines
357 B
PHP
18 lines
357 B
PHP
<?php
|
||
|
||
namespace App\Enums;
|
||
|
||
/**
|
||
* キューステータス(PHP列挙型)
|
||
* 備考:旧定数(\App\Legacy\OperatorQue::QueStatus)から段階的に移行
|
||
*/
|
||
enum QueueStatus: string
|
||
{
|
||
case 発生 = 'キュー発生';
|
||
case 作業中 = 'キュー作業中';
|
||
case 作業済 = 'キュー作業済';
|
||
case 返金済 = '返金済';
|
||
}
|
||
|
||
|