krgm.so-manager-dev.com/app/Enums/QueueStatus.php
Your Name 71986a2df1
All checks were successful
Deploy preview (main_go) / deploy (push) Successful in 14s
feat: 实装SHJ-6/9/10バッチ処理システム
- SHJ-9: 日次売上集計処理
- SHJ-10: 年次月次売上集計処理
- SHJ-6: サーバ死活監視処理
- 各種モデルサービスコマンド追加
- earnings_summary, device, hardware_check_log, print_job_log テーブル用SQL追加
2025-08-22 19:44:06 +09:00

20 lines
359 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 返金済 = '返金済';
}