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

27 lines
889 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::QueClassから段階的に移行
*/
enum QueueClass: string
{
case 社会人 = '本人確認(社会人)';
case 学生 = '本人確認(学生)';
case タグ発送 = 'タグ発送';
case 予約告知電話 = '予約告知電話';
case 定期更新電話 = '定期更新電話';
case 返金 = '返金';
case 再発行リミット超過 = '再発行リミット超過';
case 支払い催促 = '支払い催促';
case シール発行催促 = 'シール発行催促';
case サーバーエラー = 'サーバーエラー';
case プリンタエラー = 'プリンタエラー';
case スキャナーエラー = 'スキャナーエラー';
case プリンタ用紙残少警告 = 'プリンタ用紙残少警告';
}