ImportStatusEnum.php 751 B

12345678910111213141516171819202122232425262728293031323334
  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\Repositories\Enums\CacheEnum as BaseCacheEnum;
  12. class ImportStatusEnum extends BaseCacheEnum
  13. {
  14. //等待导入
  15. const IMPORT_WAIT = 1;
  16. //导入中
  17. const IMPORT_IN = 2;
  18. //导入完成
  19. const IMPORT_OK = 3;
  20. //导入出错
  21. const IMPORT_ERROR = 4;
  22. //审核数据
  23. const CHECK_DATA = 5;
  24. //合并主库中
  25. const MERGE_IN = 6;
  26. //合并出错
  27. const MERGE_ERROR = 7;
  28. //合并完成
  29. const MERGE_OK = 8;
  30. }