18 lines
281 B
PHP
18 lines
281 B
PHP
<?php
|
|
|
|
namespace plugin\marketing\utils\enum;
|
|
|
|
use app\expose\enum\builder\Enum;
|
|
|
|
class PlanKey extends Enum
|
|
{
|
|
const BASIC = [
|
|
'label' => '基础版',
|
|
'value' => 'basic'
|
|
];
|
|
const PRO = [
|
|
'label' => '专业版',
|
|
'value' => 'pro'
|
|
];
|
|
}
|