PlatformTypeEnum.php 540 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace App\Http\Enum;
  3. /**
  4. * 平台类型枚举类
  5. * Class PlatformTypeEnum
  6. * @package App\Http\Enum
  7. */
  8. class PlatformTypeEnum
  9. {
  10. /**
  11. * 淘宝
  12. */
  13. const PLATFORM_TAOBAO = 1;
  14. /**
  15. * 拼多多
  16. */
  17. const PLATFORM_PINGDUODUO = 2;
  18. /**
  19. * 京东
  20. */
  21. const PLATFORM_JINGDONG = 3;
  22. /**
  23. * 美团
  24. */
  25. const PLATFORM_MEITUAN = 4;
  26. /**
  27. * 平台饭不停
  28. */
  29. const PLATFORM_FANBUTING = 5;
  30. /**
  31. * 聚推客
  32. */
  33. const PLATFORM_JUTUIKE=6;
  34. }