radfusion/app/Services/ACL/WorklistColumn.php
2025-01-11 01:13:57 +06:00

38 lines
1.2 KiB
PHP

<?php
namespace App\Services\ACL;
enum WorklistColumn: string
{
case StudyStatus = 'study_status';
case ReportStatus = 'report_status';
case StudyHash = 'hash';
case PatientName = 'patient_name';
case PatientId = 'patient_id';
case PatientSexAge = 'sex_age';
case History = 'history';
case StudyDate = 'study_date';
case ReceiveDate = 'received_at';
case ReportDate = 'read_at';
case AssignDate = 'assigned_at';
case AuthorizeDate = 'authorized_at';
case ArchiveDate = 'archived_at';
case Modality = 'modality';
case StudyDescription = 'study_description';
case AccessionNumber = 'accession_number';
case ReferringPhysician = 'referring_physician';
case AssignedPhysician = 'assigned_physician';
case ReadingPhysician = 'reader';
case LockStatus = 'lock_status';
case LinkedInstitute = 'institute';
case Facility = 'facility';
case InstitutionName = 'institution_name';
case Priority = 'priority';
case Series = 'series';
case CreatedAt = 'created_at';
case UpdatedAt = 'updated_at';
case ActionButtons = 'action_buttons';
case ViewerButtons = 'viewer_buttons';
case ReportButtons = 'report_buttons';
}