| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Module\UrausSys\Enums;
- use UCore\Enum\EnumCore;
- use UCore\Enum\EnumExpression;
- use UCore\Enum\EnumToInt;
- use UCore\Enum\EnumToString;
- enum RECEIVE_ADDRESS_STATUS: int
- {
- use EnumToInt, EnumCore, EnumExpression;
- /**
- * 可用
- */
- case OK = 1;
- /**
- * 使用中
- */
- case ING = 20;
- /**
- * 停用
- */
- case STOP = 101;
- }
|