57 lines
1.4 KiB
PHP
57 lines
1.4 KiB
PHP
<?php
|
||
/*
|
||
* @Descripttion:
|
||
* @version:
|
||
* @Author: kangkang
|
||
* @Date: 2020-10-28 17:56:50
|
||
* @LastEditors: kangkang
|
||
* @LastEditTime: 2020-10-29 12:02:16
|
||
*/
|
||
namespace enum\product;
|
||
|
||
class Product
|
||
{
|
||
//id=>产品名,每个产品的id不可变动
|
||
public static $ScoreName = [
|
||
1 => '强子PPTP',
|
||
2 => '讯连pptp',
|
||
3 => '金桥-仅电脑',
|
||
4 => '金瑞pptp',
|
||
5 => '老鹰pptp',
|
||
6 => '先锋pptp',
|
||
7 => '无尽-仅电脑',
|
||
8 => '星星pptp',
|
||
9 => '完美-仅电脑',
|
||
10 => '无限-单窗口单ip',
|
||
11 => '先锋SSTP专用',
|
||
12 => '老鹰测试',
|
||
13 => '极客pptp',
|
||
14 => '天天pptp',
|
||
15 => '共享IP',
|
||
16 => '实惠IP',
|
||
];
|
||
|
||
public static $qiangzi = 1;
|
||
public static $xunlian = 2;
|
||
public static $jinqiao = 3;
|
||
public static $jinrui = 4;
|
||
public static $laoying = 5;
|
||
public static $xianfengpptp = 6;
|
||
public static $wujin = 7;
|
||
public static $xingxing = 8;
|
||
public static $wanmei = 9;
|
||
public static $wuxian = 10;
|
||
public static $xianfengsstp = 11;
|
||
public static $laoyingtest = 12;
|
||
public static $jike = 13;
|
||
public static $tiantian = 14;
|
||
public static $gongxiang = 15;
|
||
public static $shihui = 16;
|
||
|
||
//强子、讯连
|
||
public static $qx = [1, 2];
|
||
|
||
//天天老鹰先锋 金瑞
|
||
public static $tlxj = [4, 5, 6, 14];
|
||
}
|