radfusion/app/Services/ACL/WorklistColumn.php
2025-01-29 22:12:47 +06:00

40 lines
1.3 KiB
PHP

<?php
namespace App\Services\ACL;
enum WorklistColumn: string
{
case WorkflowLevel = 'workflow_level';
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';
case Organization = 'organization';
case Department = 'department';
case DicomServer = 'dicom_server';
}