51 lines
1.0 KiB
PHP
51 lines
1.0 KiB
PHP
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: kangkang
|
|
* @Date: 2020-10-22 15:35:49
|
|
* @LastEditors: “wanyongkang” “937888580@qq.com”
|
|
* @LastEditTime: 2024-01-27 14:42:08
|
|
*/
|
|
namespace enum\account;
|
|
|
|
class ProductAccount
|
|
{
|
|
public static $AccountType = [
|
|
1 => '新开',
|
|
2 => '批量新开',
|
|
3 => '续费',
|
|
4 => '批量续费',
|
|
100 => '原系统认证',
|
|
200 => '测试账号'
|
|
];
|
|
|
|
public static $New = 1;
|
|
public static $News = 2;
|
|
public static $AgainBuy = 3;
|
|
public static $AgainBuys = 4;
|
|
public static $Origin = 100;
|
|
public static $Test = 200;
|
|
|
|
public static $status = [
|
|
1 => '正常',
|
|
2 => '退款',
|
|
];
|
|
|
|
public static $Normal = 1;
|
|
public static $Refund = 2;
|
|
|
|
public static $ChargeStatus = [
|
|
1 => '成功',
|
|
2 => '失败',
|
|
3 => '关闭',
|
|
4 => '超时',
|
|
];
|
|
|
|
public static $Success = 1;
|
|
public static $Fail = 2;
|
|
public static $Close = 3;
|
|
public static $Outtime = 4;
|
|
|
|
}
|