| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Module\Ulogic\Enum;
- use UCore\Enum\EnumCore;
- use UCore\Enum\EnumExpression;
- use UCore\Enum\EnumToInt;
- enum WALLET_ADDRESS_STATUS: int
- {
- use EnumToInt, EnumCore, EnumExpression;
- /**
- * 删除
- */
- case DELETE = 0;
- /**
- * 正常
- */
- case NORMAL = 1;
- }
|