12345678910111213141516171819 |
- <?php
- namespace App\Generated\V1_1\Enums;
- use Kamicloud\StubApi\BOs\Enum;
- class RecommendPairApplyListContactLockState extends Enum
- {
- public const UNLOCK = 0;
- public const LOCK = 1;
- public const _MAP = [
- self::UNLOCK => 'UNLOCK',
- self::LOCK => 'LOCK',
- ];
- }
|