2020-10-29 10:49:51 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
/*
|
2020-10-29 14:57:42 +08:00
|
|
|
|
* @Descripttion:
|
|
|
|
|
|
* @version:
|
2020-10-29 10:49:51 +08:00
|
|
|
|
* @Author: kangkang
|
|
|
|
|
|
* @Date: 2020-10-28 17:56:50
|
|
|
|
|
|
* @LastEditors: kangkang
|
2020-10-29 14:57:42 +08:00
|
|
|
|
* @LastEditTime: 2020-10-29 12:02:16
|
2020-10-29 10:49:51 +08:00
|
|
|
|
*/
|
|
|
|
|
|
namespace enum\product;
|
|
|
|
|
|
|
|
|
|
|
|
class Product
|
|
|
|
|
|
{
|
|
|
|
|
|
//id=>产品名,每个产品的id不可变动
|
|
|
|
|
|
public static $ScoreName = [
|
2021-02-08 17:29:39 +08:00
|
|
|
|
1 => '强子IP',
|
|
|
|
|
|
2 => '讯连IP',
|
2020-10-29 10:49:51 +08:00
|
|
|
|
3 => '金桥-仅电脑',
|
2021-02-08 17:29:39 +08:00
|
|
|
|
4 => '金瑞IP',
|
|
|
|
|
|
5 => '老鹰IP',
|
|
|
|
|
|
6 => '先锋IP',
|
2020-10-29 10:49:51 +08:00
|
|
|
|
7 => '无尽-仅电脑',
|
2021-02-08 17:29:39 +08:00
|
|
|
|
8 => '星星IP',
|
2020-10-29 10:49:51 +08:00
|
|
|
|
9 => '完美-仅电脑',
|
|
|
|
|
|
10 => '无限-单窗口单ip',
|
|
|
|
|
|
11 => '先锋SSTP专用',
|
|
|
|
|
|
12 => '老鹰测试',
|
2021-02-08 17:29:39 +08:00
|
|
|
|
13 => '极客IP',
|
|
|
|
|
|
14 => '天天IP',
|
2020-10-29 10:49:51 +08:00
|
|
|
|
15 => '共享IP',
|
|
|
|
|
|
16 => '实惠IP',
|
2021-02-08 17:29:39 +08:00
|
|
|
|
17 => '西瓜IP',
|
|
|
|
|
|
18 => '蘑菇IP',
|
2021-05-06 15:54:43 +08:00
|
|
|
|
18 => '火狐IP',
|
2020-10-29 10:49:51 +08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
2021-02-08 17:29:39 +08:00
|
|
|
|
public static $xigua = 17;
|
|
|
|
|
|
public static $mogu = 18;
|
2021-05-06 15:54:43 +08:00
|
|
|
|
public static $huohu = 19;
|
2020-10-29 10:49:51 +08:00
|
|
|
|
|
2021-05-06 15:54:43 +08:00
|
|
|
|
//强子、讯连、火狐
|
|
|
|
|
|
public static $qx = [1, 2, 19];
|
2020-10-29 10:49:51 +08:00
|
|
|
|
|
2021-02-08 17:29:39 +08:00
|
|
|
|
//天天老鹰先锋 金瑞 蘑菇
|
|
|
|
|
|
public static $tlxj = [4, 5, 6, 14,18];
|
2020-10-29 10:49:51 +08:00
|
|
|
|
}
|