This commit is contained in:
wanyongkang
2020-10-29 10:49:51 +08:00
parent ab88e8d34d
commit c7f9c073d9
4 changed files with 484 additions and 1 deletions

View File

@@ -5,7 +5,7 @@
* @Author: kangkang
* @Date: 2020-10-22 15:35:49
* @LastEditors: kangkang
* @LastEditTime: 2020-10-23 15:37:17
* @LastEditTime: 2020-10-28 17:43:57
*/
namespace enum\order;
@@ -45,6 +45,8 @@ class ProductOrder
public static $PayComplete = [20,90];
//账单付款和退款
public static $Refunds = [30,40,50];
//统计分析用到的状态
public static $fenxi = [20,40,50,90];
//订单类型
public static $OrderType = [

56
enum/product/Product.php Normal file
View File

@@ -0,0 +1,56 @@
<?php
/*
* @Descripttion:
* @version:
* @Author: kangkang
* @Date: 2020-10-28 17:56:50
* @LastEditors: kangkang
* @LastEditTime: 2020-10-28 20:39:18
*/
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 $tlx = [5,6,14];
}