| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace App\Module\Ulogic\Enum;
- use UCore\Enum\EnumCore;
- use UCore\Enum\EnumToInt;
- enum RULE: int
- {
- use EnumToInt,EnumCore;
- /**
- * 普通用户
- */
- case ROLE_USER = 1;
- //merchant
- /**
- * 服务商
- */
- case ROLE_MERCHANT = 20;
- /**
- * 会长
- */
- case ROLE_UNION = 30;
- /**
- * 服务商2
- */
- case ROLE_MERCHANT2 = 40;
- /**
- * 官方人员
- */
- const ROLE_MANAGER = 99;
- }
|