RECEIVE_ADDRESS_STATUS.php 395 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Module\UrausSys\Enums;
  3. use UCore\Enum\EnumCore;
  4. use UCore\Enum\EnumExpression;
  5. use UCore\Enum\EnumToInt;
  6. use UCore\Enum\EnumToString;
  7. enum RECEIVE_ADDRESS_STATUS: int
  8. {
  9. use EnumToInt, EnumCore, EnumExpression;
  10. /**
  11. * 可用
  12. */
  13. case OK = 1;
  14. /**
  15. * 使用中
  16. */
  17. case ING = 20;
  18. /**
  19. * 停用
  20. */
  21. case STOP = 101;
  22. }