Browse Source

代理商类型常量

dev
李可松 4 years ago
parent
commit
4a67687b9f
  1. 24
      app/Common/AgentType.php

24
app/Common/AgentType.php

@ -0,0 +1,24 @@
<?php
namespace App\Common;
/**
* 代理商类型常量
* Class AgentType
* @package App\Common
*/
class AgentType
{
const OPERATOR = 1; //计调版旅行社
const SUPPLIER = 2; //供应商旅行社
const CLUSTER = 3; //组团版旅行社
public static function array(): array
{
return [
self::OPERATOR => '计调版旅行社',
self::SUPPLIER => '供应商旅行社',
self::CLUSTER => '组团版旅行社',
];
}
}
Loading…
Cancel
Save