RecommendPairApplyListContactLockState.php 295 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Generated\V1_1\Enums;
  3. use Kamicloud\StubApi\BOs\Enum;
  4. class RecommendPairApplyListContactLockState extends Enum
  5. {
  6. public const UNLOCK = 0;
  7. public const LOCK = 1;
  8. public const _MAP = [
  9. self::UNLOCK => 'UNLOCK',
  10. self::LOCK => 'LOCK',
  11. ];
  12. }