krgm.so-manager-dev.com/app/Enums/QueueStatus.php

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