fuc/src/Models/Ticket.php
2025-02-23 13:30:57 +08:00

51 lines
1.1 KiB
PHP
Executable File

<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Query\Builder;
/**
* @property int $id 工单ID
* @property string $title 工单标题
* @property string $content 工单内容
* @property int $userid 用户ID
* @property int $datetime 创建时间
* @property string $status 工单状态
* @property string $type 工单类型
*
* @mixin Builder
*/
final class Ticket extends Model
{
protected $connection = 'default';
protected $table = 'ticket';
/**
* 工单类型
*/
public function type(): string
{
return match ($this->type) {
'howto' => '使用',
'billing' => '财务',
'account' => '账户',
default => '其他',
};
}
/**
* 工单状态
*/
public function status(): string
{
return match ($this->status) {
'closed' => '已结单',
'open_wait_user' => '等待用户回复',
'open_wait_admin' => '进行中',
default => '未知',
};
}
}