WALLET_ADDRESS_STATUS.php 314 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Module\Ulogic\Enum;
  3. use UCore\Enum\EnumCore;
  4. use UCore\Enum\EnumExpression;
  5. use UCore\Enum\EnumToInt;
  6. enum WALLET_ADDRESS_STATUS: int
  7. {
  8. use EnumToInt, EnumCore, EnumExpression;
  9. /**
  10. * 删除
  11. */
  12. case DELETE = 0;
  13. /**
  14. * 正常
  15. */
  16. case NORMAL = 1;
  17. }