30 lines
608 B
PHP
30 lines
608 B
PHP
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: kangkang
|
|
* @Date: 2020-10-22 15:35:49
|
|
* @LastEditors: kangkang
|
|
* @LastEditTime: 2020-11-18 10:41:10
|
|
*/
|
|
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;
|
|
}
|