Files
juipphp/enum/http/Order.php
“wanyongkang” 95200f1c5a http上线
2023-12-26 16:37:09 +08:00

61 lines
1.4 KiB
PHP

<?php
namespace enum\http;
class Order
{
public static $order_type = [
1 => '新开',
2 => '续费',
3 => '修改IP',
4 => '储值包',
];
public static $new = 1;
public static $rebuy = 2;
public static $change_ip = 3;
public static $charge = 4;
public static $package_type = [
11 => '短效储值包',
21 => '短效包天',
22 => '短效包量',
23 => '短效无限量',
31 => '长效游戏',
];
public static $dxczb = 11;
public static $dxwxl = 23;
public static $dxbt = 21;
public static $dxbl = 22;
public static $cxyx = 31;
public static $package_list = [21,22,23];
//有效时长
public static $durationType = [
5 => '1至5分钟',
25 => '5至25分钟',
180 => '25至180分钟',
360 => '3至6小时',
];
public static $five = 5;
public static $twfive = 25;
public static $oneet = 180;
public static $tshour = 360;
public static $order_status = [
0 => '未支付',
1 => '已支付',
];
public static $pay_no = 0;
public static $pay_yes = 1;
public static $game_type = [
0 => '国内',
1 => '国外',
];
public static $sataus = [
0 => '请求后台失败',
1 => '请求成功',
];
public static $success = 1;
public static $fail = 0;
}