海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
440 B

  1. <?php
  2. namespace App\Common;
  3. /**
  4. * 代理商类型常量
  5. * Class AgentType
  6. * @package App\Common
  7. */
  8. class AgentType
  9. {
  10. const OPERATOR = 1; //计调版旅行社
  11. const SUPPLIER = 2; //供应商旅行社
  12. const CLUSTER = 3; //组团版旅行社
  13. public static function array(): array
  14. {
  15. return [
  16. self::OPERATOR => '计调版旅行社',
  17. self::SUPPLIER => '供应商旅行社',
  18. self::CLUSTER => '组团版旅行社',
  19. ];
  20. }
  21. }