123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /*
- * This file is part of the Jiannei/lumen-api-starter.
- *
- * (c) Jiannei <longjian.huang@foxmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace App\Repositories\Enums\Lab;
- use Jiannei\Enum\Laravel\Contracts\LocalizedEnumContract;
- use Jiannei\Enum\Laravel\Enum;
- final class OpenAppointmentStatusEnum extends Enum implements LocalizedEnumContract
- {
- //申请关闭
- const CLOSE = 0;
- //等待审批
- const WAIT_UPLOAD = 1;
- const WAIT = 2;
- //实验中心审核成功
- const SYZX_OK = 3;
- //实验中心审核失败
- const STZX_ERROR = 4;
- //院系审核成功
- const YX_OK = 5;
- //院系审核失败
- const YX_ERROR = 6;
- //完成
- const COMPLETE = 7;
- //操作失败
- const OPERATION_ERROR = 8;
- }
|