OpenAppointmentStatusEnum.php 851 B

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