LessonScheduleApproveStatusEnum.php 831 B

123456789101112131415161718192021222324252627282930313233343536
  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\School;
  11. use Jiannei\Enum\Laravel\Contracts\LocalizedEnumContract;
  12. use Jiannei\Enum\Laravel\Enum;
  13. final class LessonScheduleApproveStatusEnum extends Enum implements LocalizedEnumContract
  14. {
  15. //申请关闭
  16. const CLOSE = 0;
  17. //等待审批
  18. const WAIT = 1;
  19. //院系审核成功
  20. const YX_OK = 2;
  21. //院系审核失败
  22. const YX_ERROR = 3;
  23. //实验中心审核成功
  24. const SYZX_OK = 4;
  25. //实验中心审核失败
  26. const STZX_ERROR = 5;
  27. //完成
  28. const COMPLETE = 6;
  29. //操作失败
  30. const OPERATION_ERROR = 7;
  31. }