Files
李建琦 eae151fd57 FastMovieAI AI短剧创作平台 二开基线
- 源码: xhadmincn/FastMovieAI (Apache 2.0)
- 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION
- vendor/示例资源已gitignore
2026-08-26 18:37:36 +08:00

41 lines
877 B
PHP

<?php
namespace plugin\user\utils\enum;
use app\expose\enum\builder\Enum;
class UserPermission extends Enum
{
const MOBILE = [
'label' => '已绑定手机号',
'value' => 'mobile'
];
const EMAIL = [
'label' => '已绑定邮箱',
'value' => 'email'
];
const TWOFA = [
'label' => '已开启两步验证',
'value' => 'twofa'
];
const WECHAT = [
'label' => '已绑定微信',
'value' => 'wechat'
];
const USERNAME = [
'label' => '已设置用户名',
'value' => 'username'
];
const PASSWORD = [
'label' => '已设置密码',
'value' => 'password'
];
const REALNAME = [
'label' => '已实名认证',
'value' => 'realname'
];
const BUY = [
'label' => '可以购买',
'value' => 'buy'
];
}