Files
juipphp/enum/product/Product.php

63 lines
1.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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 => '强子IP',
2 => '讯连IP',
3 => '金桥-仅电脑',
4 => '金瑞IP',
5 => '老鹰IP',
6 => '先锋IP',
7 => '无尽-仅电脑',
8 => '星星IP',
9 => '完美-仅电脑',
10 => '无限-单窗口单ip',
11 => '先锋SSTP专用',
12 => '老鹰测试',
13 => '极客IP',
14 => '天天IP',
15 => '共享IP',
16 => '实惠IP',
17 => '西瓜IP',
18 => '蘑菇IP',
18 => '火狐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 $xigua = 17;
public static $mogu = 18;
public static $huohu = 19;
//强子、讯连、火狐
public static $qx = [1, 2, 19];
//天天老鹰先锋 金瑞 蘑菇
public static $tlxj = [4, 5, 6, 14,18];
}