123456789101112131415161718192021222324 |
- <?php
- /**
- * Created by IntelliJ IDEA.
- * User: kelyliang
- * Date: 2024/2/26
- * Time: 下午 04:03
- */
- namespace App\Models\Enums;
- enum RequirementReasonStatus: string
- {
- case ALREADYDONE = 'Already Done';
- case DUPLICATE = 'Duplicate';
- case POSTPONED= 'Postponed';
- case WONTDO= "Wont'Do";
- case CANCELLED= 'Cancelled';
- case ASDESIGNED= 'As Designed';
- }
|