From 8ed7fd321a737b7156bba91b679500e2e6e151ec Mon Sep 17 00:00:00 2001 From: Joe Huss Date: Thu, 20 Oct 2022 04:28:37 -0400 Subject: [PATCH] Translated the project to english (translations done by google translate). --- src/plugin/admin/api/Auth.php | 34 +++--- src/plugin/admin/api/Install.php | 22 ++-- src/plugin/admin/api/Menu.php | 16 +-- src/plugin/admin/api/Middleware.php | 2 +- src/plugin/admin/app/Util.php | 4 +- src/plugin/admin/app/controller/Base.php | 8 +- src/plugin/admin/app/controller/Crud.php | 22 ++-- .../admin/app/controller/IndexController.php | 6 +- .../app/controller/auth/AdminController.php | 10 +- .../controller/auth/AdminRoleController.php | 18 +-- .../controller/auth/AdminRuleController.php | 60 +++++----- .../controller/common/AccountController.php | 40 +++---- .../controller/common/InstallController.php | 42 +++---- .../app/controller/common/MenuController.php | 22 ++-- .../controller/common/UploadController.php | 30 ++--- .../controller/database/TableController.php | 80 ++++++------- .../app/controller/plugin/AppController.php | 86 +++++++------- .../app/controller/user/UserController.php | 6 +- src/plugin/admin/app/functions.php | 8 +- src/plugin/admin/app/model/Admin.php | 20 ++-- src/plugin/admin/app/model/AdminRole.php | 10 +- src/plugin/admin/app/model/AdminRule.php | 22 ++-- src/plugin/admin/app/model/Base.php | 2 +- src/plugin/admin/app/model/Option.php | 6 +- src/plugin/admin/app/model/Role.php | 20 ++-- src/plugin/admin/app/model/User.php | 38 +++--- src/plugin/admin/app/view/index/index.html | 2 +- src/plugin/admin/config/menu.php | 26 ++--- src/plugin/admin/webman-admin.sql | 108 +++++++++--------- 29 files changed, 385 insertions(+), 385 deletions(-) diff --git a/src/plugin/admin/api/Auth.php b/src/plugin/admin/api/Auth.php index 77d4651..84c6d4b 100644 --- a/src/plugin/admin/api/Auth.php +++ b/src/plugin/admin/api/Auth.php @@ -7,13 +7,13 @@ use support\exception\BusinessException; use function admin; /** - * 对外提供的鉴权接口 + * Authentication interface provided externally */ class Auth { /** - * 判断权限 - * 如果没有权限则抛出异常 + * judgment authority + * Throw exception if no permission * * @param string $controller * @param string $action @@ -30,7 +30,7 @@ class Auth } /** - * 判断是否有权限 + * Determine whether there is permission * * @param string $controller * @param string $action @@ -41,40 +41,40 @@ class Auth */ public static function canAccess(string $controller, string $action, int &$code = 0, string &$msg = '') { - // 获取控制器鉴权信息 + // Get controller authentication information $class = new \ReflectionClass($controller); $properties = $class->getDefaultProperties(); $noNeedLogin = $properties['noNeedLogin'] ?? []; $noNeedAuth = $properties['noNeedAuth'] ?? []; - // 不需要登录 + // No login required if (in_array($action, $noNeedLogin)) { return true; } - // 获取登录信息 + // Get login information $admin = admin(); if (!$admin) { - $msg = '请登录'; - // 401是未登录固定的返回码 + $msg = 'please sign in'; + // 401is not logged in fixed return code $code = 401; return false; } - // 不需要鉴权 + // No authentication required if (in_array($action, $noNeedAuth)) { return true; } - // 当前管理员无角色 + // Current administrator has no role $roles = $admin['roles']; if (!$roles) { - $msg = '无权限'; + $msg = 'No permission'; $code = 2; return false; } - // 角色没有规则 + // Role has no rules $rules = AdminRole::whereIn('id', $roles)->pluck('rules'); $rule_ids = []; foreach ($rules as $rule_string) { @@ -84,23 +84,23 @@ class Auth $rule_ids = array_merge($rule_ids, explode(',', $rule_string)); } if (!$rule_ids) { - $msg = '无权限'; + $msg = 'No permission'; $code = 2; return false; } - // 超级管理员 + // Super Admin if (in_array('*', $rule_ids)){ return true; } - // 没有当前控制器的规则 + // No rules for current controller $rule = AdminRule::where(function ($query) use ($controller, $action) { $query->where('name', "$controller@$action")->orWhere('name', $controller); })->whereIn('id', $rule_ids)->first(); if (!$rule) { - $msg = '无权限'; + $msg = 'No permission'; $code = 2; return false; } diff --git a/src/plugin/admin/api/Install.php b/src/plugin/admin/api/Install.php index 4741bec..97ce5f3 100644 --- a/src/plugin/admin/api/Install.php +++ b/src/plugin/admin/api/Install.php @@ -5,33 +5,33 @@ namespace plugin\admin\api; class Install { /** - * 安装 + * Install * * @param $version * @return void */ public static function install($version) { - // 导入菜单 + // Import menu Menu::import(static::getMenus()); } /** - * 卸载 + * Uninstall * * @param $version * @return void */ public static function uninstall($version) { - // 删除菜单 + // Delete menu foreach (static::getMenus() as $menu) { Menu::delete($menu['name']); } } /** - * 更新 + * renew * * @param $from_version * @param $to_version @@ -40,16 +40,16 @@ class Install */ public static function update($from_version, $to_version, $context = null) { - // 删除不用的菜单 + // Delete unused menus if (isset($context['previous_menus'])) { static::removeUnnecessaryMenus($context['previous_menus']); } - // 导入新菜单 + // Import new menu Menu::import(static::getMenus()); } /** - * 更新前数据收集等 + * Data collection before update etc * * @param $from_version * @param $to_version @@ -57,12 +57,12 @@ class Install */ public static function beforeUpdate($from_version, $to_version) { - // 在更新之前获得老菜单,通过context传递给 update + // Get the old menu before updating, passed the context to update return ['previous_menus' => static::getMenus()]; } /** - * 获取菜单 + * Get menu * * @return array|mixed */ @@ -77,7 +77,7 @@ class Install } /** - * 删除不需要的菜单 + * Remove unwanted menus * * @param $previous_menus * @return void diff --git a/src/plugin/admin/api/Menu.php b/src/plugin/admin/api/Menu.php index 71314c0..04a18c0 100644 --- a/src/plugin/admin/api/Menu.php +++ b/src/plugin/admin/api/Menu.php @@ -7,13 +7,13 @@ use support\exception\BusinessException; use function admin; /** - * 对外提供的菜单接口 + * Externally provided menu interface */ class Menu { /** - * 根据名字获得菜单 + * Get menu by name * * @param $name * @return array @@ -25,7 +25,7 @@ class Menu } /** - * 根据id获得菜单 + * Get menu by id * * @param $id * @return array @@ -36,7 +36,7 @@ class Menu } /** - * 添加菜单 + * Add menu * * @param array $menu * @return int @@ -55,7 +55,7 @@ class Menu } /** - * 导入菜单 + * Import menu * * @param array $menu_tree * @return void @@ -83,7 +83,7 @@ class Menu } /** - * 删除菜单 + * Delete menu * * @param $name * @return void @@ -94,7 +94,7 @@ class Menu if (!$item) { return; } - // 子规则一起删除 + // Sub-rules are deleted together $delete_ids = $children_ids = [$item['id']]; while($children_ids) { $children_ids = AdminRule::whereIn('pid', $children_ids)->pluck('id')->toArray(); @@ -105,7 +105,7 @@ class Menu /** - * 获取菜单中某个(些)字段的值 + * Get the value of a field(s) in the menu * * @param $menus * @param $column diff --git a/src/plugin/admin/api/Middleware.php b/src/plugin/admin/api/Middleware.php index c93a9e5..f961a35 100644 --- a/src/plugin/admin/api/Middleware.php +++ b/src/plugin/admin/api/Middleware.php @@ -8,7 +8,7 @@ use Webman\Http\Response; use Webman\MiddlewareInterface; /** - * 对外提供的中间件 + * Externally provided middleware */ class Middleware implements MiddlewareInterface { diff --git a/src/plugin/admin/app/Util.php b/src/plugin/admin/app/Util.php index b13a61d..7136991 100644 --- a/src/plugin/admin/app/Util.php +++ b/src/plugin/admin/app/Util.php @@ -31,7 +31,7 @@ class Util static public function checkTableName($table) { if (!preg_match('/^[a-zA-Z_0-9]+$/', $table)) { - throw new BusinessException('表名不合法'); + throw new BusinessException('The table name is invalid'); } return true; } @@ -71,7 +71,7 @@ class Util public static function methodControlMap() { return [ - //method=>[控件] + //method=>[Controls] 'integer' => ['InputNumber'], 'string' => ['Input'], 'text' => ['InputTextArea'], diff --git a/src/plugin/admin/app/controller/Base.php b/src/plugin/admin/app/controller/Base.php index 64cf775..0d757e9 100644 --- a/src/plugin/admin/app/controller/Base.php +++ b/src/plugin/admin/app/controller/Base.php @@ -7,25 +7,25 @@ use support\Db; use support\Request; /** - * 基础控制器 + * Basic Controller */ class Base { /** - * 无需登录的方法及鉴权 + * Method and authentication without login * @var array */ protected $noNeedLogin = []; /** - * 需要登录无需鉴权的方法 + * Requires login without authentication method * @var array */ protected $noNeedAuth = []; /** - * 返回格式化json数据 + * return formatted json data * * @param int $code * @param string $msg diff --git a/src/plugin/admin/app/controller/Crud.php b/src/plugin/admin/app/controller/Crud.php index ee51557..e9c1274 100644 --- a/src/plugin/admin/app/controller/Crud.php +++ b/src/plugin/admin/app/controller/Crud.php @@ -18,7 +18,7 @@ trait Crud /** - * 查询 + * Inquire * * @param Request $request * @return \support\Response @@ -60,7 +60,7 @@ trait Crud } /** - * 添加 + * Add to * @param Request $request * @return \support\Response */ @@ -70,7 +70,7 @@ trait Crud $table = $this->model->getTable(); $allow_column = Util::db()->select("desc `$table`"); if (!$allow_column) { - return $this->json(2, '表不存在'); + return $this->json(2, 'table does not exist'); } $columns = array_column($allow_column, 'Field', 'Field'); foreach ($data as $col => $item) { @@ -94,7 +94,7 @@ trait Crud } /** - * 更新 + * renew * @param Request $request * @return \support\Response */ @@ -106,14 +106,14 @@ trait Crud $table = $this->model->getTable(); $allow_column = Util::db()->select("desc `$table`"); if (!$allow_column) { - return $this->json(2, '表不存在'); + return $this->json(2, 'table does not exist'); } foreach ($data as $col => $item) { if (is_array($item)) { $data[$col] = implode(',', $item); } if ($col === 'password') { - // 密码为空,则不更新密码 + // If the password is empty, the password will not be updated if ($item == '') { unset($data[$col]); continue; @@ -126,7 +126,7 @@ trait Crud } /** - * 删除 + * delete * @param Request $request * @return \support\Response * @throws \Support\Exception\BusinessException @@ -140,7 +140,7 @@ trait Crud } /** - * 摘要 + * Summary * @param Request $request * @return \support\Response * @throws \Support\Exception\BusinessException @@ -168,7 +168,7 @@ trait Crud } /** - * 按表获取摘要 + * Get summary by table * * @param $table * @param $section @@ -269,7 +269,7 @@ trait Crud $allow_column = Util::db()->select("desc `$table`"); if (!$allow_column) { - return $this->json(2, '表不存在'); + return $this->json(2, 'table does not exist'); } $allow_column = array_column($allow_column, 'Field', 'Field'); if (!in_array($field, $allow_column)) { @@ -317,7 +317,7 @@ trait Crud } /** - * 表格树 + * table tree * * @param $items * @return \support\Response diff --git a/src/plugin/admin/app/controller/IndexController.php b/src/plugin/admin/app/controller/IndexController.php index 0779193..9ae8f10 100644 --- a/src/plugin/admin/app/controller/IndexController.php +++ b/src/plugin/admin/app/controller/IndexController.php @@ -10,21 +10,21 @@ class IndexController { /** - * 无需登录的方法 + * Methods without login * @var array */ protected $noNeedLogin = ['index']; /** - * 后台主页 + * Background Home * * @return \support\Response */ public function index(Request $request) { if (!$request->queryString()) { - // 检查是否安装了admin + // Check if installedadmin $database_config_file = base_path() . '/plugin/admin/config/database.php'; clearstatcache(); if (!is_file($database_config_file)) { diff --git a/src/plugin/admin/app/controller/auth/AdminController.php b/src/plugin/admin/app/controller/auth/AdminController.php index a6e4fb1..543a572 100644 --- a/src/plugin/admin/app/controller/auth/AdminController.php +++ b/src/plugin/admin/app/controller/auth/AdminController.php @@ -8,7 +8,7 @@ use plugin\admin\app\model\Admin; use support\Request; /** - * 管理员设置 + * Administrator Settings */ class AdminController extends Base { @@ -19,12 +19,12 @@ class AdminController extends Base protected $model = null; /** - * 增删改查 + * Add, delete, modify and check */ use Crud; /** - * 构造函数 + * Constructor */ public function __construct() { @@ -32,7 +32,7 @@ class AdminController extends Base } /** - * 删除 + * delete * * @param Request $request * @return \support\Response @@ -43,7 +43,7 @@ class AdminController extends Base $column = $request->post('column'); $value = $request->post('value'); if ($value == admin_id()) { - return $this->json(1, '不能删除自己'); + return $this->json(1, 'Cannot delete myself'); } $this->model->where([$column => $value])->delete(); return $this->json(0); diff --git a/src/plugin/admin/app/controller/auth/AdminRoleController.php b/src/plugin/admin/app/controller/auth/AdminRoleController.php index 7c10e61..f09a4bc 100644 --- a/src/plugin/admin/app/controller/auth/AdminRoleController.php +++ b/src/plugin/admin/app/controller/auth/AdminRoleController.php @@ -11,7 +11,7 @@ use support\Db; use support\Request; /** - * 管理员角色设置 + * Administrator role settings */ class AdminRoleController extends Base { @@ -21,12 +21,12 @@ class AdminRoleController extends Base protected $model = null; /** - * 增删改查 + * Add, delete, modify and check */ use Crud; /** - * 构造函数 + * Constructor */ public function __construct() { @@ -34,7 +34,7 @@ class AdminRoleController extends Base } /** - * 更新 + * renew * * @param Request $request * @return \support\Response @@ -47,14 +47,14 @@ class AdminRoleController extends Base $table = $this->model->getTable(); $allow_column = Util::db()->select("desc $table"); if (!$allow_column) { - return $this->json(2, '表不存在'); + return $this->json(2, 'table does not exist'); } $data['rules'] = array_filter(array_unique((array)$data['rules'])); $item = $this->model->where($column, $value)->first(); if (!$item) { - return $this->json(1, '记录不存在'); + return $this->json(1, 'Record does not exist'); } if ($item->id == 1) { $data['rules'] = '*'; @@ -65,7 +65,7 @@ class AdminRoleController extends Base $data[$col] = implode(',', $item); } if ($col === 'password') { - // 密码为空,则不更新密码 + // If the password is empty, the password will not be updated if ($item == '') { unset($data[$col]); continue; @@ -79,7 +79,7 @@ class AdminRoleController extends Base } /** - * 删除 + * delete * @param Request $request * @return \support\Response * @throws \Support\Exception\BusinessException @@ -93,7 +93,7 @@ class AdminRoleController extends Base return $this->json(0); } if ($item->id == 1) { - return $this->json(1, '无法删除超级管理员角色'); + return $this->json(1, 'Cannot delete super administrator role'); } $this->model->where('id', $item->id)->delete(); return $this->json(0); diff --git a/src/plugin/admin/app/controller/auth/AdminRuleController.php b/src/plugin/admin/app/controller/auth/AdminRuleController.php index 7ee8a27..1f1ffef 100644 --- a/src/plugin/admin/app/controller/auth/AdminRuleController.php +++ b/src/plugin/admin/app/controller/auth/AdminRuleController.php @@ -17,12 +17,12 @@ class AdminRuleController extends Base protected $model = null; /** - * 增删改查 + * Add, delete, modify and check */ use Crud; /** - * 构造函数 + * Constructor */ public function __construct() { @@ -30,7 +30,7 @@ class AdminRuleController extends Base } /** - * 获取权限树 + * Get permission tree * * @param Request $request * @return \support\Response @@ -43,7 +43,7 @@ class AdminRuleController extends Base } /** - * 根据类同步规则到数据库 + * According to class synchronization rules to database * * @return void */ @@ -91,7 +91,7 @@ class AdminRuleController extends Base } } } - // 从数据库中删除已经不存在的方法 + // Remove a method that no longer exists from the database $menu_names_to_del = array_diff($methods_in_db, $methods_in_files); if ($menu_names_to_del) { AdminRule::whereIn('name', $menu_names_to_del)->delete(); @@ -99,7 +99,7 @@ class AdminRuleController extends Base } /** - * 查询 + * Inquire * * @param Request $request * @return \support\Response @@ -141,7 +141,7 @@ class AdminRuleController extends Base } /** - * 添加 + * Add to * @param Request $request * @return \support\Response */ @@ -151,11 +151,11 @@ class AdminRuleController extends Base $table = $this->model->getTable(); $allow_column = Util::db()->select("desc $table"); if (!$allow_column) { - return $this->json(2, '表不存在'); + return $this->json(2, 'table does not exist'); } $name = $data['name']; if ($this->model->where('name', $name)->first()) { - return $this->json(1, "菜单key $name 已经存在"); + return $this->json(1, "Menu key $name already exists"); } $columns = array_column($allow_column, 'Field', 'Field'); foreach ($data as $col => $item) { @@ -178,7 +178,7 @@ class AdminRuleController extends Base } /** - * 更新 + * renew * @param Request $request * @return \support\Response */ @@ -190,11 +190,11 @@ class AdminRuleController extends Base $table = $this->model->getTable(); $allow_column = Util::db()->select("desc `$table`"); if (!$allow_column) { - return $this->json(2, '表不存在'); + return $this->json(2, 'table does not exist'); } $row = $this->model->where($column, $value)->first(); if (!$row) { - return $this->json(2, '记录不存在'); + return $this->json(2, 'Record does not exist'); } foreach ($data as $col => $item) { if (is_array($item)) { @@ -204,7 +204,7 @@ class AdminRuleController extends Base if (!isset($data['pid'])) { $data['pid'] = 0; } elseif ($data['pid'] == $row['id']) { - return $this->json(2, '不能将自己设置为上级菜单'); + return $this->json(2, 'Cannot set yourself as parent menu'); } $data['path'] = (empty($data['pid']) ? '/' : '') . ltrim($data['path'], '/'); @@ -214,7 +214,7 @@ class AdminRuleController extends Base } /** - * 删除 + * delete * @param Request $request * @return \support\Response * @throws \Support\Exception\BusinessException @@ -225,9 +225,9 @@ class AdminRuleController extends Base $value = $request->post('value'); $item = $this->model->where($column, $value)->first(); if (!$item) { - return $this->json(1, '记录不存在'); + return $this->json(1, 'Record does not exist'); } - // 子规则一起删除 + // Sub-rules are deleted together $delete_ids = $children_ids = [$item['id']]; while($children_ids) { $children_ids = $this->model->whereIn('pid', $children_ids)->pluck('id')->toArray(); @@ -238,7 +238,7 @@ class AdminRuleController extends Base } /** - * 一键生成菜单 + * One-click menu generation * * @param Request $request * @return \support\Response @@ -258,7 +258,7 @@ class AdminRuleController extends Base if ($pid) { $parent_menu = AdminRule::find($pid); if (!$parent_menu) { - return $this->json(1, '父菜单不存在'); + return $this->json(1, 'Parent menu does not exist'); } $path = $parent_menu['path']; } @@ -283,20 +283,20 @@ class AdminRuleController extends Base $model_file = base_path() . "/plugin/admin/app/model/$model_class.php"; if (!$overwrite) { if (is_file($controller_file)) { - return $this->json(1, substr($controller_file, strlen(base_path())) . '已经存在'); + return $this->json(1, substr($controller_file, strlen(base_path())) . 'already exists'); } if (is_file($model_file)) { - return $this->json(1, substr($model_file, strlen(base_path())) . '已经存在'); + return $this->json(1, substr($model_file, strlen(base_path())) . 'already exists'); } } - // 创建model + // createmodel $this->createModel($model_class, "plugin\\admin\\app\\model", $model_file, $table_name); - // 创建controller + // createcontroller $this->createController($controller_class, $controller_namespace, $controller_file, $model_class, $name); - // 菜单相关参数 + // Menu related parameters $menu_path = str_replace('_', '', $table_basename); $suffix = substr($menu_path, -2); if ($suffix != 'ss' && $suffix != 'es') { @@ -328,7 +328,7 @@ class AdminRuleController extends Base $rule_ids = array_merge($rule_ids, explode(',', $rule_string)); } - // 不是超级管理员,则需要给当前管理员这个菜单的权限 + // If you are not a super administrator, you need to give the current administrator permission to this menu if (!in_array('*', $rule_ids) && $roles){ $role = AdminRole::find(current($roles)); if ($role) { @@ -341,7 +341,7 @@ class AdminRuleController extends Base } /** - * 创建model + * createmodel * * @param $class * @param $namespace @@ -363,7 +363,7 @@ class AdminRuleController extends Base foreach (Util::db()->select("select COLUMN_NAME,DATA_TYPE,COLUMN_KEY,COLUMN_COMMENT from INFORMATION_SCHEMA.COLUMNS where table_name = '$table' and table_schema = '$database'") as $item) { if ($item->COLUMN_KEY === 'PRI') { $pk = $item->COLUMN_NAME; - $item->COLUMN_COMMENT .= "(主键)"; + $item->COLUMN_COMMENT .= "(primary key)"; } $type = $this->getType($item->DATA_TYPE); $properties .= " * @property $type \${$item->COLUMN_NAME} {$item->COLUMN_COMMENT}\n"; @@ -416,7 +416,7 @@ EOF; } /** - * 创建控制器 + * Create Controller * * @param $controller_class * @param $namespace @@ -444,7 +444,7 @@ use support\Request; class $controller_class extends Base { /** - * 开启增删改查 + * Enable CRUD */ use Crud; @@ -454,7 +454,7 @@ class $controller_class extends Base protected \$model = null; /** - * 构造函数 + * Constructor * * @return void */ @@ -478,7 +478,7 @@ EOF; } /** - * 字段类型到php类型映射 + * Field type to php type mapping * * @param string $type * @return string diff --git a/src/plugin/admin/app/controller/common/AccountController.php b/src/plugin/admin/app/controller/common/AccountController.php index b91b59d..b26f654 100644 --- a/src/plugin/admin/app/controller/common/AccountController.php +++ b/src/plugin/admin/app/controller/common/AccountController.php @@ -12,18 +12,18 @@ use support\Request; use support\Response; /** - * 管理员账户 + * Administrator Account */ class AccountController extends Base { /** - * 不需要登录的方法 + * Methods that do not require login * @var string[] */ public $noNeedLogin = ['login', 'logout', 'captcha']; /** - * 不需要鉴权的方法 + * Methods that do not require authentication * @var string[] */ public $noNeedAuth = ['info', 'getPermCode']; @@ -34,7 +34,7 @@ class AccountController extends Base protected $model = null; /** - * 构造函数 + * Constructor */ public function __construct() { @@ -42,7 +42,7 @@ class AccountController extends Base } /** - * 登录 + * Log in * * @param Request $request * @return Response @@ -51,18 +51,18 @@ class AccountController extends Base { $captcha = $request->post('captcha'); if (strtolower($captcha) !== session('captcha-login')) { - return $this->json(1, '验证码错误'); + return $this->json(1, 'Verification code error'); } $request->session()->forget('captcha-login'); $username = $request->post('username', ''); $password = $request->post('password', ''); if (!$username) { - return $this->json(1, '用户名不能为空'); + return $this->json(1, 'Username can not be empty'); } $this->checkLoginLimit($username); $admin = Admin::where('username', $username)->first(); if (!$admin || !Util::passwordVerify($password, $admin->password)) { - return $this->json(1, '账户不存在或密码错误'); + return $this->json(1, 'Account does not exist or password is incorrect'); } $this->removeLoginLimit($username); $admin = $admin->toArray(); @@ -70,14 +70,14 @@ class AccountController extends Base unset($admin['password']); $admin['roles'] = $admin['roles'] ? explode(',', $admin['roles']) : []; $session->set('admin', $admin); - return $this->json(0, '登录成功', [ + return $this->json(0, 'login successful', [ 'nickname' => $admin['nickname'], 'token' => $request->sessionId(), ]); } /** - * 退出 + * quit * * @param Request $request * @return Response @@ -90,7 +90,7 @@ class AccountController extends Base /** - * 获取登录信息 + * Get login information * * @param Request $request * @return Response @@ -116,7 +116,7 @@ class AccountController extends Base } /** - * 验证码 + * Verification Code * @param Request $request * @param $type * @return Response @@ -131,7 +131,7 @@ class AccountController extends Base } /** - * 获取权限码(目前没作用) + * Get permission code (currently has no effect) * @return Response */ public function getPermCode() @@ -140,7 +140,7 @@ class AccountController extends Base } /** - * 更新 + * renew * * @param Request $request * @return Response @@ -175,7 +175,7 @@ class AccountController extends Base } /** - * 修改密码 + * change Password * * @param Request $request * @return Response @@ -185,10 +185,10 @@ class AccountController extends Base $hash = admin('password'); $password = $request->post('password'); if (!$password) { - return $this->json(2, '密码不能为空'); + return $this->json(2, 'password can not be blank'); } if (!Util::passwordVerify($request->post('old_password'), $hash)) { - return $this->json(1, '原始密码不正确'); + return $this->json(1, 'Original password is incorrect'); } $update_data = [ 'password' => Util::passwordHash($password) @@ -198,7 +198,7 @@ class AccountController extends Base } /** - * 检查登录频率限制 + * Check login frequency limit * * @param $username * @return void @@ -228,13 +228,13 @@ class AccountController extends Base $limit_info['count']++; file_put_contents($limit_file, json_encode($limit_info)); if ($limit_info['count'] >= 5) { - throw new BusinessException('登录失败次数过多,请5分钟后再试'); + throw new BusinessException('Too many login failures, please try again in 5 minutes'); } } /** - * 解除登录限制 + * Remove login restrictions * * @param $username * @return void diff --git a/src/plugin/admin/app/controller/common/InstallController.php b/src/plugin/admin/app/controller/common/InstallController.php index 75b71d9..4b6c793 100644 --- a/src/plugin/admin/app/controller/common/InstallController.php +++ b/src/plugin/admin/app/controller/common/InstallController.php @@ -13,18 +13,18 @@ use support\Response; use support\Db; /** - * 安装 + * Install */ class InstallController extends Base { /** - * 不需要登录的方法 + * Methods that do not require login * @var string[] */ public $noNeedLogin = ['step1', 'step2']; /** - * 设置数据库 + * Setup Database * * @param Request $request * @return Response @@ -35,11 +35,11 @@ class InstallController extends Base $database_config_file = base_path() . '/plugin/admin/config/database.php'; clearstatcache(); if (is_file($database_config_file)) { - return $this->json(1, '管理后台已经安装!如需重新安装,请删除该插件数据库配置文件并重启'); + return $this->json(1, 'The management background has been installed! If you need to reinstall, please delete the plugin database configuration file and restart'); } if (!class_exists(CaptchaBuilder::class) || !class_exists(Manager::class)) { - return $this->json(1, '请先restart重启webman后再进行此页面的设置'); + return $this->json(1, 'Please restart webman before setting this page'); } $user = $request->post('user'); @@ -60,13 +60,13 @@ class InstallController extends Base $tables = $smt->fetchAll(); } catch (\Throwable $e) { if (stripos($e, 'Access denied for user')) { - return $this->json(1, '数据库用户名或密码错误'); + return $this->json(1, 'Incorrect database username or password'); } if (stripos($e, 'Connection refused')) { - return $this->json(1, 'Connection refused. 请确认数据库IP端口是否正确,数据库已经启动'); + return $this->json(1, 'Connection refused. Please confirm whether the database IP port is correct and the database has been started'); } if (stripos($e, 'timed out')) { - return $this->json(1, '数据库连接超时,请确认数据库IP端口是否正确,安全组及防火墙已经放行端口'); + return $this->json(1, 'The database connection timed out, please confirm whether the database IP port is correct, the security group and firewall have released the port'); } throw $e; } @@ -86,13 +86,13 @@ class InstallController extends Base } $tables_conflict = array_intersect($tables_to_install, $tables_exist); if ($tables_conflict) { - return $this->json(1, '以下表' . implode(',', $tables_conflict) . '已经存在,如需覆盖请选择强制覆盖'); + return $this->json(1, 'The following table' . implode(',', $tables_conflict) . ' already exists, if you want to overwrite, please select Force Overwrite'); } } $sql_file = base_path() . '/plugin/admin/webman-admin.sql'; if (!is_file($sql_file)) { - return $this->json(1, '数据库SQL文件不存在'); + return $this->json(1, 'Database SQL file does not exist'); } $sql_query = file_get_contents($sql_file); @@ -102,7 +102,7 @@ class InstallController extends Base $db->exec($sql); } - // 导入菜单 + // Import menu $menus = include base_path() . '/plugin/admin/config/menu.php'; $this->import($menus, $db); @@ -130,7 +130,7 @@ EOF; file_put_contents($database_config_file, $config_content); - // 尝试reload + // tryreload if (function_exists('posix_kill')) { set_error_handler(function () {}); posix_kill(posix_getppid(), SIGUSR1); @@ -141,7 +141,7 @@ EOF; } /** - * 设置管理员 + * Setup Administrator * * @param Request $request * @return Response @@ -153,24 +153,24 @@ EOF; $password = $request->post('password'); $password2 = $request->post('password2'); if ($password != $password2) { - return $this->json(1, '两次密码不一致'); + return $this->json(1, 'The two passwords do not match'); } if (!is_file($config_file = base_path() . '/plugin/admin/config/database.php')) { - return $this->json(1, '请先完成第一步数据库配置'); + return $this->json(1, 'Please complete the first step of database configuration'); } $config = include $config_file; $connection = $config['connections']['mysql']; $pdo = $this->getPdo($connection['host'], $connection['username'], $connection['password'], $connection['port'], $connection['database']); $smt = $pdo->query('select * from wa_admins limit 1'); if ($smt->fetchAll()) { - return $this->json(1, '后台已经安装完毕,无法通过此页面创建管理员'); + return $this->json(1, 'The background has been installed, the administrator cannot be created through this page'); } $smt = $pdo->prepare("insert into `wa_admins` (`username`, `password`, `nickname`, `roles`, `created_at`, `updated_at`) values (:username, :password, :nickname, :roles, :created_at, :updated_at)"); $time = date('Y-m-d H:i:s'); $data = [ 'username' => $username, 'password' => Util::passwordHash($password), - 'nickname' => '超级管理员', + 'nickname' => 'Super Admin', 'roles' => '1', 'created_at' => $time, 'updated_at' => $time @@ -183,7 +183,7 @@ EOF; } /** - * 添加菜单 + * Add menu * * @param array $menu * @param \PDO $pdo @@ -214,7 +214,7 @@ EOF; } /** - * 导入菜单 + * Import menu * * @param array $menu_tree * @param \PDO $pdo @@ -259,7 +259,7 @@ EOF; } /** - * 去除sql文件中的注释 + * Remove comments in sql file * * @param $sql * @return string @@ -318,7 +318,7 @@ EOF; } /** - * 获取pdo连接 + * Get pdo connection * * @param $host * @param $username diff --git a/src/plugin/admin/app/controller/common/MenuController.php b/src/plugin/admin/app/controller/common/MenuController.php index addaf22..3bd8d85 100644 --- a/src/plugin/admin/app/controller/common/MenuController.php +++ b/src/plugin/admin/app/controller/common/MenuController.php @@ -11,7 +11,7 @@ use function admin; class MenuController extends Base { /** - * 不需要权限的方法 + * methods that don't require permissions * * @var string[] */ @@ -23,7 +23,7 @@ class MenuController extends Base protected $model = null; /** - * 构造函数 + * Constructor */ public function __construct() { @@ -31,7 +31,7 @@ class MenuController extends Base } /** - * 获取菜单 + * Get menu * * @return \support\Response */ @@ -65,7 +65,7 @@ class MenuController extends Base } } - // 超级管理员权限为 * + // Super administrator privilege is * if (!in_array('*', $rules)) { $this->removeUncontain($formatted_items, 'id', $rules); } @@ -78,7 +78,7 @@ class MenuController extends Base } /** - * 获取菜单树 + * Get menu tree * * @return \support\Response */ @@ -112,7 +112,7 @@ class MenuController extends Base } } - // 超级管理员权限为 * + // Super administrator privilege is * if (!in_array('*', $rules)) { $this->removeUncontain($formatted_items, 'id', $rules); } @@ -127,7 +127,7 @@ class MenuController extends Base } /** - * 移除不包含某些数据的数组 + * Remove arrays that do not contain some data * * @param $array * @param $key @@ -152,7 +152,7 @@ class MenuController extends Base } /** - * 判断数组是否包含某些数据 + * Determine whether the array contains some data * * @param $array * @param $key @@ -179,7 +179,7 @@ class MenuController extends Base } /** - * 递归删除某些key + * recursively delete somekey * * @param $array * @param $keys @@ -199,7 +199,7 @@ class MenuController extends Base } /** - * 获取权限规则 + * Get permission rules * @return array */ protected function getRulesAndItems() @@ -219,7 +219,7 @@ class MenuController extends Base } /** - * 递归重建数组下标 + * Recursively rebuild array subscripts * * @return void */ diff --git a/src/plugin/admin/app/controller/common/UploadController.php b/src/plugin/admin/app/controller/common/UploadController.php index 1f0918f..928a1c1 100644 --- a/src/plugin/admin/app/controller/common/UploadController.php +++ b/src/plugin/admin/app/controller/common/UploadController.php @@ -9,13 +9,13 @@ use function base_path; use function json; /** - * 上传 + * upload */ class UploadController extends Base { /** - * 上传文件 + * upload files * * @param Request $request * @return \support\Response @@ -24,7 +24,7 @@ class UploadController extends Base { $file = current($request->file()); if (!$file || !$file->isValid()) { - return $this->json(1, '未找到文件'); + return $this->json(1, 'File not found'); } $img_exts = [ 'jpg', @@ -39,11 +39,11 @@ class UploadController extends Base if ($data['code']) { return $this->json($data['code'], $data['message']); } - return json(['code' => 0, 'message' => '上传成功', 'url' => $data['data']['src']]); + return json(['code' => 0, 'message' => 'Upload successful', 'url' => $data['data']['src']]); } /** - * 上传头像 + * Upload Avatar * * @param Request $request * @return \support\Response @@ -55,7 +55,7 @@ class UploadController extends Base if ($file && $file->isValid()) { $ext = strtolower($file->getUploadExtension()); if (!in_array($ext, ['jpg', 'jpeg', 'gif', 'png'])) { - return json(['code' => 2, 'msg' => '仅支持 jpg jpeg gif png格式']); + return json(['code' => 2, 'msg' => 'Only support jpg jpeg gif png format']); } $image = Image::make($file); $width = $image->width(); @@ -87,7 +87,7 @@ class UploadController extends Base return json([ 'code' => 0, - 'message' => '上传成功', + 'message' => 'Upload successful', 'url' => "/app/admin/$relative_path/$name.$ext" ]); } @@ -95,7 +95,7 @@ class UploadController extends Base } /** - * 上传图片 + * upload image * * @param Request $request * @return \support\Response @@ -122,18 +122,18 @@ class UploadController extends Base unlink($realpath); return json( [ 'code' => 500, - 'message' => '处理图片发生错误' + 'message' => 'Error processing image' ]); } return json( [ 'code' => 0, - 'message' => '上传成功', + 'message' => 'Upload successful', 'url' => $data['data']['src'] ]); } /** - * 获取上传数据 + * Get upload data * * @param Request $request * @param $relative_dir @@ -145,7 +145,7 @@ class UploadController extends Base $relative_dir = ltrim($relative_dir, '/'); $file = current($request->file()); if (!$file || !$file->isValid()) { - return ['code' => 400, 'message' => '未找到上传文件']; + return ['code' => 400, 'message' => 'Upload file not found']; } $base_dir = base_path() . '/plugin/admin/public/'; @@ -157,7 +157,7 @@ class UploadController extends Base $ext = strtolower($file->getUploadExtension()); $ext_forbidden_map = ['php', 'php3', 'php5', 'css', 'js', 'html', 'htm', 'asp', 'jsp']; if (in_array($ext, $ext_forbidden_map)) { - return ['code' => 400, 'message' => '不支持该格式的文件上传']; + return ['code' => 400, 'message' => 'File upload in this format is not supported']; } $relative_path = $relative_dir . '/' . bin2hex(pack('Nn',time(), random_int(1, 65535))) . ".$ext"; @@ -167,7 +167,7 @@ class UploadController extends Base $file->move($full_path); return [ 'code' => 0, - 'msg' => '上传成功', + 'msg' => 'Upload successful', 'data' => [ 'src' => "/app/admin/$relative_path", 'name' => $file_name, @@ -178,7 +178,7 @@ class UploadController extends Base } /** - * 格式化文件大小 + * Format file size * * @param $file_size * @return string diff --git a/src/plugin/admin/app/controller/database/TableController.php b/src/plugin/admin/app/controller/database/TableController.php index 0eff6cf..c25451a 100644 --- a/src/plugin/admin/app/controller/database/TableController.php +++ b/src/plugin/admin/app/controller/database/TableController.php @@ -13,13 +13,13 @@ use Support\Request; class TableController extends Base { /** - * 不需要鉴权的方法 + * Methods that do not require authentication * @var string[] */ public $noNeedAuth = ['types']; /** - * 查询表 + * Lookup table * * @param Request $request * @return \support\Response @@ -51,7 +51,7 @@ class TableController extends Base } /** - * 创建表 + * Create table * * @param Request $request * @return \support\Response @@ -70,7 +70,7 @@ class TableController extends Base throw new BusinessException("请为{$column['field']}选择类型"); } if (!isset($type_method_map[$column['type']])) { - throw new BusinessException("不支持的类型{$column['type']}"); + throw new BusinessException("unsupported type{$column['type']}"); } $this->createColumn($column, $table); } @@ -78,10 +78,10 @@ class TableController extends Base $table->collation = 'utf8mb4_general_ci'; $table->engine = 'InnoDB'; }); - // @todo 防注入 + // @todo Anti-injection Util::db()->statement("ALTER TABLE `$table_name` COMMENT '$table_comment'"); - // 索引 + // index Util::schema()->table($table_name, function (Blueprint $table) use ($keys) { foreach ($keys as $key) { $name = $key['name']; @@ -106,7 +106,7 @@ class TableController extends Base } /** - * 修改表 + * Modify table * * @param Request $request * @return \support\Response @@ -120,7 +120,7 @@ class TableController extends Base $table_comment = $data['table']['comment']; $columns = $data['columns']; $keys = $data['keys'] ?? []; - // 改表名 + // Rename table if ($table_name != $old_table_name) { Util::checkTableName($table_name); Util::schema()->rename($old_table_name, $table_name); @@ -130,17 +130,17 @@ class TableController extends Base $type_method_map = Util::methodControlMap(); foreach ($columns as $column) { if (!isset($type_method_map[$column['type']])) { - throw new BusinessException("不支持的类型{$column['type']}"); + throw new BusinessException("unsupported type{$column['type']}"); } $field = $column['field']; - // 重命名的字段 mysql8才支持? + // Renamed fields are only supported by mysql8? if (isset($column['old_field']) && $column['old_field'] !== $field) { //Util::db()->statement("ALTER TABLE $table_name RENAME COLUMN {$column['old_field']} to $field"); } $old_column = $old_columns[$field] ?? []; - // 类型更改 + // Type change foreach ($old_column as $key => $value) { if (isset($column[$key]) && $column[$key] != $value) { $this->modifyColumn($column, $table_name); @@ -150,7 +150,7 @@ class TableController extends Base } $table = $this->getSchema($table_name, 'table'); - // @todo $table_comment 防止SQL注入 + // @todo $table_comment Prevent SQL Injection if ($table_comment !== $table['comment']) { Util::db()->statement("ALTER TABLE `$table_name` COMMENT '$table_comment'"); } @@ -159,12 +159,12 @@ class TableController extends Base Util::schema()->table($table_name, function (Blueprint $table) use ($columns, $old_columns, $keys, $table_name) { foreach ($columns as $column) { $field = $column['field']; - // 新字段 + // new field if (!isset($old_columns[$field])) { $this->createColumn($column, $table); } } - // 更新索引名字 + // Update index name foreach ($keys as $key) { if (!empty($key['old_name']) && $key['old_name'] !== $key['name']) { $table->renameIndex($key['old_name'], $key['name']); @@ -172,13 +172,13 @@ class TableController extends Base } }); - // 找到删除的字段 + // Found deleted field $old_columns = $this->getSchema($table_name, 'columns'); $exists_column_names = array_column($columns, 'field', 'field'); $old_columns_names = array_column($old_columns, 'field'); $drop_column_names = array_diff($old_columns_names, $exists_column_names); foreach ($drop_column_names as $drop_column_name) { - //$table->dropColumn($drop_column_name); 无法使用 + //$table->dropColumn($drop_column_name); Not available Util::db()->statement("ALTER TABLE $table_name DROP COLUMN $drop_column_name"); } @@ -187,13 +187,13 @@ class TableController extends Base foreach ($keys as $key) { $key_name = $key['name']; $old_key = $old_keys[$key_name] ?? []; - // 如果索引有变动,则删除索引,重新建立索引 + // If the index changes, delete the index and rebuild the index if ($old_key && ($key['type'] != $old_key['type'] || $key['columns'] != $old_key['columns'])) { $old_key = []; unset($old_keys[$key_name]); $table->dropIndex($key_name); } - // 重新建立索引 + // Rebuild Index if (!$old_key) { $name = $key['name']; $columns = $key['columns']; @@ -206,7 +206,7 @@ class TableController extends Base } } - // 找到删除的索引 + // Found deleted index $exists_key_names = array_column($keys, 'name', 'name'); $old_keys_names = array_column($old_keys, 'name'); $drop_keys_names = array_diff($old_keys_names, $exists_key_names); @@ -227,7 +227,7 @@ class TableController extends Base } /** - * 查询记录 + * Search record * * @param Request $request * @return \support\Response @@ -242,11 +242,11 @@ class TableController extends Base $page_size = $request->get('pageSize', $format === 'tree' ? 1000 : 10); if (!preg_match('/[a-zA-Z_0-9]+/', $table)) { - return $this->json(1, '表不存在'); + return $this->json(1, 'table does not exist'); } $allow_column = Util::db()->select("desc $table"); if (!$allow_column) { - return $this->json(2, '表不存在'); + return $this->json(2, 'table does not exist'); } $allow_column = array_column($allow_column, 'Field', 'Field'); if (!in_array($field, $allow_column)) { @@ -298,7 +298,7 @@ class TableController extends Base } /** - * 插入记录 + * insert record * * @param Request $request * @return \support\Response @@ -329,7 +329,7 @@ class TableController extends Base } /** - * 更新记录 + * update record * * @param Request $request * @return \support\Response @@ -347,7 +347,7 @@ class TableController extends Base $data[$col] = implode(',', $item); } if ($col === 'password') { - // 密码为空,则不更新密码 + // If the password is empty, the password will not be updated if ($item == '') { unset($data[$col]); continue; @@ -366,7 +366,7 @@ class TableController extends Base } /** - * 删除记录 + * Delete Record * * @param Request $request * @return \support\Response @@ -383,7 +383,7 @@ class TableController extends Base } /** - * 表摘要 + * Table Summary * * @param Request $request * @return \support\Response @@ -412,7 +412,7 @@ class TableController extends Base } /** - * 获取摘要 + * Get Summary * * @param $table * @param $section @@ -478,7 +478,7 @@ class TableController extends Base } /** - * 获取字段长度 + * Get field length * * @param $schema * @return string @@ -504,7 +504,7 @@ class TableController extends Base } /** - * 删除表 + * delete table * * @param Request $request * @return \support\Response @@ -517,16 +517,16 @@ class TableController extends Base } $table_not_allow_drop = ['wa_admins', 'wa_users', 'wa_options', 'wa_admin_roles', 'wa_admin_rules']; if (in_array($table_name, $table_not_allow_drop)) { - return $this->json(400, "$table_name 不允许删除"); + return $this->json(400, "$table_name Delete not allowed"); } Util::schema()->drop($table_name); - // 删除schema + // deleteschema Util::db()->table('wa_options')->where('name', "table_form_schema_$table_name")->delete(); return $this->json(0, 'ok'); } /** - * 创建字段 + * Create Field * * @param $column * @param Blueprint $table @@ -537,7 +537,7 @@ class TableController extends Base $method = $column['type']; $args = [$column['field']]; if (stripos($method, 'int') !== false) { - // auto_increment 会自动成为主键 + // auto_increment will automatically become the primary key if ($column['auto_increment']) { $column['nullable'] = false; $column['default'] = ''; @@ -582,7 +582,7 @@ class TableController extends Base } /** - * 更改字段 + * Change Field * * @param $column * @param Blueprint $table @@ -598,7 +598,7 @@ class TableController extends Base $auto_increment = $column['auto_increment']; $length = (int)$column['length']; $primary_key = $column['primary_key']; - // @todo 防止SQL注入 + // @todo Prevent SQL Injection if (isset($column['old_field']) && $column['old_field'] !== $field) { $sql = "ALTER TABLE $table CHANGE COLUMN {$column['old_field']} $field "; } else { @@ -630,7 +630,7 @@ class TableController extends Base $sql .= $length ? "$method($length) " : "$method "; break; case 'enum': - // @todo 防止SQL注入 + // @todo Prevent SQL Injection $args = array_map('trim', explode(',', $column['length'])); $sql .= "enum('" . implode("','", $args) . "') "; break; @@ -667,7 +667,7 @@ class TableController extends Base } /** - * 字段类型列表 + * Field Type List * * @param Request $request * @return \support\Response @@ -679,7 +679,7 @@ class TableController extends Base } /** - * 获取在options对用的name + * Get used in optionsname * * @param $table_name * @return string @@ -690,7 +690,7 @@ class TableController extends Base } /** - * 更新表的form schema信息 + * Update table's form schema information * * @param $table_name * @param $data diff --git a/src/plugin/admin/app/controller/plugin/AppController.php b/src/plugin/admin/app/controller/plugin/AppController.php index c1848c8..09c97b3 100644 --- a/src/plugin/admin/app/controller/plugin/AppController.php +++ b/src/plugin/admin/app/controller/plugin/AppController.php @@ -17,7 +17,7 @@ class AppController extends Base protected $noNeedAuth = ['schema', 'captcha']; /** - * 列表 + * list * * @param Request $request * @return \support\Response @@ -42,7 +42,7 @@ class AppController extends Base $msg = "/api/app/list return $content"; echo "msg\r\n"; Log::error($msg); - return $this->json(1, '获取数据出错'); + return $this->json(1, 'Error getting data'); } $disabled = is_phar(); foreach ($data['result']['items'] as $key => $item) { @@ -54,7 +54,7 @@ class AppController extends Base } /** - * 摘要 + * Summary * * @param Request $request * @return \support\Response @@ -69,7 +69,7 @@ class AppController extends Base } /** - * 安装 + * Install * * @param Request $request * @return \support\Response @@ -82,27 +82,27 @@ class AppController extends Base $installed_version = $this->getPluginVersion($name); $host = $request->host(true); if (!$name || !$version) { - return $this->json(1, '缺少参数'); + return $this->json(1, 'Missing parameters'); } $user = session('app-plugin-user'); if (!$user) { - return $this->json(0, '请登录', [ + return $this->json(0, 'please sign in', [ 'code' => 401, - 'message' => '请登录' + 'message' => 'please sign in' ]); } - // 获取下载zip文件url + // Get download zip fileurl $data = $this->getDownloadUrl($name, $user['uid'], $host, $version); if ($data['code'] == -1) { - return $this->json(0, '请登录', [ + return $this->json(0, 'please sign in', [ 'code' => 401, - 'message' => '请登录' + 'message' => 'please sign in' ]); } - // 下载zip文件 + // download zip file $base_path = base_path() . "/plugin/$name"; $zip_file = "$base_path.zip"; $extract_to = base_path() . '/plugin/'; @@ -112,14 +112,14 @@ class AppController extends Base if (!$has_zip_archive) { $cmd = $this->getUnzipCmd($zip_file, $extract_to); if (!$cmd) { - throw new BusinessException('请给php安装zip模块或者给系统安装unzip命令'); + throw new BusinessException('Please install the zip module for php or install the unzip command for the system'); } if (!function_exists('proc_open')) { - throw new BusinessException('请解除proc_open函数的禁用或者给php安装zip模块'); + throw new BusinessException('Please unblock the proc_open function or install the zip module for php'); } } - // 解压zip到plugin目录 + // Extract the zip to the plugin directory if ($has_zip_archive) { $zip = new \ZipArchive; $zip->open($zip_file, \ZIPARCHIVE::CHECKCONS); @@ -128,7 +128,7 @@ class AppController extends Base $context = null; $install_class = "\\plugin\\$name\\api\\Install"; if ($installed_version) { - // 执行beforeUpdate + // implementbeforeUpdate if (class_exists($install_class) && method_exists($install_class, 'beforeUpdate')) { $context = call_user_func([$install_class, 'beforeUpdate'], $installed_version, $version); } @@ -144,12 +144,12 @@ class AppController extends Base unlink($zip_file); if ($installed_version) { - // 执行update更新 + // Execute update update if (class_exists($install_class) && method_exists($install_class, 'update')) { call_user_func([$install_class, 'update'], $installed_version, $version, $context); } } else { - // 执行install安装 + // Execute install if (class_exists($install_class) && method_exists($install_class, 'install')) { call_user_func([$install_class, 'install'], $version); } @@ -161,7 +161,7 @@ class AppController extends Base } /** - * 卸载 + * Uninstall * * @param Request $request * @return \support\Response @@ -171,23 +171,23 @@ class AppController extends Base $name = $request->post('name'); $version = $request->post('version'); if (!$name || !preg_match('/^[a-zA-Z0-9_]+$/', $name)) { - return $this->json(1, '参数错误'); + return $this->json(1, 'Parameter error'); } - // 获得插件路径 + // Get plugin path clearstatcache(); $path = get_realpath(base_path() . "/plugin/$name"); if (!$path || !is_dir($path)) { - return $this->json(1, '已经删除'); + return $this->json(1, 'deleted'); } - // 执行uninstall卸载 + // Execute uninstall $install_class = "\\plugin\\$name\\api\\Install"; if (class_exists($install_class) && method_exists($install_class, 'uninstall')) { call_user_func([$install_class, 'uninstall'], $version); } - // 删除目录 + // delete directory clearstatcache(); if (is_dir($path)) { $this->rmDir($path); @@ -200,7 +200,7 @@ class AppController extends Base } /** - * 登录验证码 + * Login verification code * * @param Request $request * @return \support\Response @@ -219,7 +219,7 @@ class AppController extends Base } /** - * 登录 + * Log in * * @param Request $request * @return \support\Response @@ -241,7 +241,7 @@ class AppController extends Base $msg = "/api/user/login return $content"; echo "msg\r\n"; Log::error($msg); - return $this->json(1, '发生错误'); + return $this->json(1, 'An error occurred'); } if ($data['code'] != 0) { return $this->json($data['code'], $data['msg']); @@ -253,7 +253,7 @@ class AppController extends Base } /** - * 获取zip下载url + * Get zip downloadurl * * @param $name * @param $uid @@ -281,19 +281,19 @@ class AppController extends Base if (!$data) { $msg = "/api/app/download return $content"; Log::error($msg); - throw new BusinessException('访问官方接口失败'); + throw new BusinessException('Failed to access official interface'); } if ($data['code'] && $data['code'] != -1) { throw new BusinessException($data['msg']); } if ($data['code'] == 0 && !isset($data['result']['url'])) { - throw new BusinessException('官方接口返回数据错误'); + throw new BusinessException('The official interface returned data error'); } return $data; } /** - * 下载zip + * downloadzip * * @param $url * @param $file @@ -308,17 +308,17 @@ class AppController extends Base $body = $response->getBody(); $status = $response->getStatusCode(); if ($status == 404) { - throw new BusinessException('安装包不存在'); + throw new BusinessException('The installation package does not exist'); } $zip_content = $body->getContents(); if (empty($zip_content)) { - throw new BusinessException('安装包不存在'); + throw new BusinessException('The installation package does not exist'); } file_put_contents($file, $zip_content); } /** - * 获取系统支持的解压命令 + * Get the unzip command supported by the system * * @param $zip_file * @param $extract_to @@ -337,7 +337,7 @@ class AppController extends Base } /** - * 使用解压命令解压 + * Unzip using the unzip command * * @param $cmd * @return void @@ -352,18 +352,18 @@ class AppController extends Base ]; $handler = proc_open($cmd, $desc, $pipes); if (!is_resource($handler)) { - throw new BusinessException("解压zip时出错:proc_open调用失败"); + throw new BusinessException("Error unpacking zip: proc_open call failed"); } $err = fread($pipes[2], 1024); fclose($pipes[2]); proc_close($handler); if ($err) { - throw new BusinessException("解压zip时出错:$err"); + throw new BusinessException("Error unzipping zip:$err"); } } /** - * 获取本地插件版本 + * Get local plugin version * * @param $name * @return array|mixed|null @@ -378,7 +378,7 @@ class AppController extends Base } /** - * 删除目录 + * delete directory * * @param $src * @return void @@ -401,13 +401,13 @@ class AppController extends Base } /** - * 获取httpclient + * Obtainhttpclient * * @return Client */ protected function httpClient() { - // 下载zip + // downloadzip $options = [ 'base_uri' => config('plugin.admin.app.plugin_market_host'), 'timeout' => 30, @@ -427,13 +427,13 @@ class AppController extends Base } /** - * 获取下载httpclient + * Get Downloadhttpclient * * @return Client */ protected function downloadClient() { - // 下载zip + // downloadzip $options = [ 'timeout' => 30, 'connect_timeout' => 5, @@ -451,7 +451,7 @@ class AppController extends Base } /** - * 查找系统命令 + * Find System Commands * * @param string $name * @param string|null $default diff --git a/src/plugin/admin/app/controller/user/UserController.php b/src/plugin/admin/app/controller/user/UserController.php index 89b1ff8..7fd45d1 100644 --- a/src/plugin/admin/app/controller/user/UserController.php +++ b/src/plugin/admin/app/controller/user/UserController.php @@ -8,7 +8,7 @@ use plugin\admin\app\model\User; use support\Request; /** - * 用户管理 + * User Management */ class UserController extends Base { @@ -18,12 +18,12 @@ class UserController extends Base protected $model = null; /** - * 增删改查 + * Add, delete, modify and check */ use Crud; /** - * 构造函数 + * Constructor */ public function __construct() { diff --git a/src/plugin/admin/app/functions.php b/src/plugin/admin/app/functions.php index 7cf7f18..d4242b7 100644 --- a/src/plugin/admin/app/functions.php +++ b/src/plugin/admin/app/functions.php @@ -4,7 +4,7 @@ */ /** - * 当前登录管理员id + * Currently logged in administratorid * * @return mixed|null */ @@ -14,7 +14,7 @@ function admin_id() } /** - * 当前管理员 + * Current Admin * * @param null|array|string $fields * @return array|mixed|null @@ -38,7 +38,7 @@ function admin($fields = null) } /** - * 当前登录用户id + * Currently logged in userid * * @return mixed|null */ @@ -48,7 +48,7 @@ function user_id() } /** - * 当前登录用户 + * Currently logged in user * * @param null|array|string $fields * @return array|mixed|null diff --git a/src/plugin/admin/app/model/Admin.php b/src/plugin/admin/app/model/Admin.php index 19084e5..f53549d 100644 --- a/src/plugin/admin/app/model/Admin.php +++ b/src/plugin/admin/app/model/Admin.php @@ -4,16 +4,16 @@ namespace plugin\admin\app\model; /** - * @property integer $id ID(主键) - * @property string $username 用户名 - * @property string $nickname 昵称 - * @property string $password 密码 - * @property string $avatar 头像 - * @property string $email 邮箱 - * @property string $mobile 手机 - * @property string $created_at 创建时间 - * @property string $updated_at 更新时间 - * @property string $roles 角色 + * @property integer $id ID(primary key) + * @property string $username username + * @property string $nickname Nick name + * @property string $password password + * @property string $avatar avatar + * @property string $email Mail + * @property string $mobile cell phone + * @property string $created_at creation time + * @property string $updated_at Update time + * @property string $roles Role */ class Admin extends Base { diff --git a/src/plugin/admin/app/model/AdminRole.php b/src/plugin/admin/app/model/AdminRole.php index 14ee014..d380573 100644 --- a/src/plugin/admin/app/model/AdminRole.php +++ b/src/plugin/admin/app/model/AdminRole.php @@ -3,11 +3,11 @@ namespace plugin\admin\app\model; /** - * @property integer $id 主键(主键) - * @property string $name 角色名 - * @property string $rules 规则 - * @property string $created_at 创建时间 - * @property string $updated_at 更新时间 + * @property integer $id primary key (primary key) + * @property string $name character name + * @property string $rules rule + * @property string $created_at creation time + * @property string $updated_at Update time */ class AdminRole extends Base { diff --git a/src/plugin/admin/app/model/AdminRule.php b/src/plugin/admin/app/model/AdminRule.php index 34e85c7..a239f34 100644 --- a/src/plugin/admin/app/model/AdminRule.php +++ b/src/plugin/admin/app/model/AdminRule.php @@ -3,18 +3,18 @@ namespace plugin\admin\app\model; /** - * @property integer $id 主键(主键) - * @property string $title 标题 - * @property string $name 名字 - * @property integer $pid 上级id - * @property string $component 组件 - * @property string $path 路径 - * @property string $icon 图标 - * @property string $created_at 创建时间 - * @property string $updated_at 更新时间 + * @property integer $id primary key (primary key) + * @property string $title title + * @property string $name name + * @property integer $pid superiorid + * @property string $component component + * @property string $path path + * @property string $icon icon + * @property string $created_at creation time + * @property string $updated_at Update time * @property string $frame_src url - * @property integer $hide_menu 隐藏菜单 - * @property integer $is_menu 是否菜单 + * @property integer $hide_menu Hide menu + * @property integer $is_menu Whether menu */ class AdminRule extends Base { diff --git a/src/plugin/admin/app/model/Base.php b/src/plugin/admin/app/model/Base.php index 72f56e0..e601eb4 100644 --- a/src/plugin/admin/app/model/Base.php +++ b/src/plugin/admin/app/model/Base.php @@ -14,7 +14,7 @@ class Base extends Model protected $connection = 'plugin.admin.mysql'; /** - * 格式化日期 + * Format Date * * @param DateTimeInterface $date * @return string diff --git a/src/plugin/admin/app/model/Option.php b/src/plugin/admin/app/model/Option.php index 97018b0..cf92e76 100644 --- a/src/plugin/admin/app/model/Option.php +++ b/src/plugin/admin/app/model/Option.php @@ -4,11 +4,11 @@ namespace plugin\admin\app\model; /** - * @property integer $id (主键) + * @property integer $id (primary key) * @property string $name 键 * @property mixed $value 值 - * @property string $created_at 创建时间 - * @property string $updated_at 更新时间 + * @property string $created_at creation time + * @property string $updated_at Update time */ class Option extends Base { diff --git a/src/plugin/admin/app/model/Role.php b/src/plugin/admin/app/model/Role.php index a0557a6..a208a9b 100644 --- a/src/plugin/admin/app/model/Role.php +++ b/src/plugin/admin/app/model/Role.php @@ -3,17 +3,17 @@ namespace plugin\admin\app\model; /** - * @property integer $id 主键(主键) - * @property string $name 名字 - * @property integer $pid 上级id - * @property string $component 组件 - * @property string $path 路径 - * @property string $icon 图标 - * @property string $title 标题 - * @property string $created_at 创建时间 - * @property string $updated_at 更新时间 + * @property integer $id primary key (primary key) + * @property string $name name + * @property integer $pid superiorid + * @property string $component component + * @property string $path path + * @property string $icon icon + * @property string $title title + * @property string $created_at creation time + * @property string $updated_at Update time * @property string $frame_src url - * @property integer $hide_menu 隐藏菜单 + * @property integer $hide_menu Hide menu */ class Role extends Base { diff --git a/src/plugin/admin/app/model/User.php b/src/plugin/admin/app/model/User.php index 5e94f22..3aeb534 100644 --- a/src/plugin/admin/app/model/User.php +++ b/src/plugin/admin/app/model/User.php @@ -3,26 +3,26 @@ namespace plugin\admin\app\model; /** - * @property integer $id 主键(主键) - * @property string $username 用户名 - * @property string $nickname 昵称 - * @property string $password 密码 - * @property string $sex 性别 - * @property string $avatar 头像 - * @property string $email 邮箱 - * @property string $mobile 手机 - * @property integer $level 等级 - * @property string $birthday 生日 - * @property integer $money 余额 - * @property integer $score 积分 - * @property string $last_time 上次登录时间 - * @property string $last_ip 上次登录ip - * @property string $join_time 注册时间 - * @property string $join_ip 注册ip + * @property integer $id primary key (primary key) + * @property string $username username + * @property string $nickname Nick name + * @property string $password password + * @property string $sex gender + * @property string $avatar avatar + * @property string $email Mail + * @property string $mobile cell phone + * @property integer $level grade + * @property string $birthday Birthday + * @property integer $money balance + * @property integer $score integral + * @property string $last_time Last Login Time + * @property string $last_ip Last Loginip + * @property string $join_time Registration time + * @property string $join_ip registerip * @property string $token token - * @property string $created_at 创建时间 - * @property string $updated_at 更新时间 - * @property string $roles 更新时间 + * @property string $created_at creation time + * @property string $updated_at Update time + * @property string $roles Update time */ class User extends Base { diff --git a/src/plugin/admin/app/view/index/index.html b/src/plugin/admin/app/view/index/index.html index 8e26a5b..5324e32 100644 --- a/src/plugin/admin/app/view/index/index.html +++ b/src/plugin/admin/app/view/index/index.html @@ -4,7 +4,7 @@ - Arco Design Pro - 开箱即用的中台前端/设计解决方案 + Arco Design Pro - Out-of-the-box mid-stage front-end/design solutions diff --git a/src/plugin/admin/config/menu.php b/src/plugin/admin/config/menu.php index 3f67fec..3dd5f7d 100644 --- a/src/plugin/admin/config/menu.php +++ b/src/plugin/admin/config/menu.php @@ -6,19 +6,19 @@ use plugin\queue\app\controller\redis\NormalController; return [ [ - 'title' => '数据库', + 'title' => 'database', 'name' => 'database', 'path' => '/database', 'icon' => 'ant-design:database-filled', 'children' => [ [ - 'title' => '所有表', + 'title' => 'all tables', 'name' => 'plugin\\admin\\app\\controller\\database\\TableController', 'path' => 'table', 'component' => '/database/table/index' ], [ - 'title' => '表详情', + 'title' => 'Table Details', 'name' => 'tableview', 'path' => 'table/view/:id', 'component' => '/database/table/View', @@ -27,25 +27,25 @@ return [ ] ], [ - 'title' => '权限管理', + 'title' => 'authority management', 'name' => 'auth', 'path' => '/auth', 'icon' => 'ant-design:setting-filled', 'children' => [ [ - 'title' => '账户管理', + 'title' => 'Account Management', 'name' => 'plugin\\admin\\app\\controller\\auth\\AdminController', 'path' => 'admin', 'component' => '/auth/admin/index' ], [ - 'title' => '角色管理', + 'title' => 'role management', 'name' => 'plugin\\admin\\app\\controller\\auth\\AdminRoleController', 'path' => 'admin-role', 'component' => '/auth/admin-role/index', ], [ - 'title' => '菜单管理', + 'title' => 'Menu management', 'name' => 'plugin\\admin\\app\\controller\\auth\\AdminRuleController', 'path' => 'admin-rule', 'component' => '/auth/admin-rule/index', @@ -53,13 +53,13 @@ return [ ] ], [ - 'title' => '会员管理', + 'title' => 'Membership Management', 'name' => 'user', 'path' => '/user', 'icon' => 'ant-design:smile-filled', 'children' => [ [ - 'title' => '用户', + 'title' => 'user', 'name' => 'plugin\\admin\\app\\controller\\user\\UserController', 'path' => 'user', 'component' => '/user/user/index' @@ -67,13 +67,13 @@ return [ ] ], [ - 'title' => '通用设置', + 'title' => 'General Settings', 'name' => 'common', 'path' => '/common', 'icon' => 'ant-design:setting-filled', 'children' => [ [ - 'title' => '个人资料', + 'title' => 'personal information', 'name' => 'plugin\\admin\\app\\controller\\user\\AccountController', 'path' => 'account', 'component' => '/common/account/index' @@ -81,13 +81,13 @@ return [ ] ], [ - 'title' => '插件管理', + 'title' => 'Plugin management', 'name' => 'plugin', 'path' => '/plugin', 'icon' => 'ant-design:appstore-filled', 'children' => [ [ - 'title' => '应用插件', + 'title' => 'Apply Plugins', 'name' => 'plugin\\admin\\app\\controller\\plugin\\AppController', 'path' => 'app', 'component' => '/plugin/App' diff --git a/src/plugin/admin/webman-admin.sql b/src/plugin/admin/webman-admin.sql index 2718907..6933946 100644 --- a/src/plugin/admin/webman-admin.sql +++ b/src/plugin/admin/webman-admin.sql @@ -23,13 +23,13 @@ DROP TABLE IF EXISTS `wa_admin_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wa_admin_roles` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', - `name` varchar(80) NOT NULL COMMENT '角色名', - `rules` text COMMENT '权限', - `created_at` datetime NOT NULL COMMENT '创建时间', - `updated_at` datetime NOT NULL COMMENT '更新时间', + `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `name` varchar(80) NOT NULL COMMENT 'character name', + `rules` text COMMENT 'Permissions', + `created_at` datetime NOT NULL COMMENT 'creation time', + `updated_at` datetime NOT NULL COMMENT 'Update time', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='管理员角色'; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='Admin role'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -38,7 +38,7 @@ CREATE TABLE `wa_admin_roles` ( LOCK TABLES `wa_admin_roles` WRITE; /*!40000 ALTER TABLE `wa_admin_roles` DISABLE KEYS */; -INSERT INTO `wa_admin_roles` VALUES (1,'超级管理员','*','2022-08-13 16:15:01','2022-08-13 16:15:01'); +INSERT INTO `wa_admin_roles` VALUES (1,'Super Admin','*','2022-08-13 16:15:01','2022-08-13 16:15:01'); /*!40000 ALTER TABLE `wa_admin_roles` ENABLE KEYS */; UNLOCK TABLES; @@ -50,21 +50,21 @@ DROP TABLE IF EXISTS `wa_admin_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wa_admin_rules` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', - `title` varchar(255) NOT NULL COMMENT '标题', - `name` varchar(255) NOT NULL COMMENT 'name(全局唯一)', - `pid` int(10) unsigned DEFAULT '0' COMMENT '上级菜单', - `component` varchar(255) DEFAULT 'LAYOUT' COMMENT '前端组件', - `path` varchar(255) NOT NULL COMMENT '路径', - `icon` varchar(255) DEFAULT NULL COMMENT '图标', - `created_at` datetime NOT NULL COMMENT '创建时间', - `updated_at` datetime NOT NULL COMMENT '更新时间', + `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `title` varchar(255) NOT NULL COMMENT 'title', + `name` varchar(255) NOT NULL COMMENT 'name(Globally Unique)', + `pid` int(10) unsigned DEFAULT '0' COMMENT 'Super Menu', + `component` varchar(255) DEFAULT 'LAYOUT' COMMENT 'Frontend Components', + `path` varchar(255) NOT NULL COMMENT 'path', + `icon` varchar(255) DEFAULT NULL COMMENT 'icon', + `created_at` datetime NOT NULL COMMENT 'creation time', + `updated_at` datetime NOT NULL COMMENT 'Update time', `frame_src` varchar(255) DEFAULT NULL COMMENT 'url', - `hide_menu` tinyint(4) DEFAULT '0' COMMENT '隐藏菜单', - `is_menu` int(11) NOT NULL DEFAULT '1' COMMENT '是否菜单', + `hide_menu` tinyint(4) DEFAULT '0' COMMENT 'Hide menu', + `is_menu` int(11) NOT NULL DEFAULT '1' COMMENT 'Whether menu', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='权限规则'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Permission Rules'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -76,18 +76,18 @@ DROP TABLE IF EXISTS `wa_admins`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wa_admins` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', - `username` varchar(32) NOT NULL COMMENT '用户名', - `nickname` varchar(40) NOT NULL COMMENT '昵称', - `password` varchar(255) NOT NULL COMMENT '密码', - `avatar` varchar(255) DEFAULT '/app/admin/avatar.png' COMMENT '头像', - `email` varchar(100) DEFAULT NULL COMMENT '邮箱', - `mobile` varchar(16) DEFAULT NULL COMMENT '手机', - `created_at` datetime DEFAULT NULL COMMENT '创建时间', - `updated_at` datetime DEFAULT NULL COMMENT '更新时间', - `roles` varchar(255) DEFAULT NULL COMMENT '角色', + `username` varchar(32) NOT NULL COMMENT 'username', + `nickname` varchar(40) NOT NULL COMMENT 'Nick name', + `password` varchar(255) NOT NULL COMMENT 'password', + `avatar` varchar(255) DEFAULT '/app/admin/avatar.png' COMMENT 'avatar', + `email` varchar(100) DEFAULT NULL COMMENT 'Mail', + `mobile` varchar(16) DEFAULT NULL COMMENT 'cell phone', + `created_at` datetime DEFAULT NULL COMMENT 'creation time', + `updated_at` datetime DEFAULT NULL COMMENT 'Update time', + `roles` varchar(255) DEFAULT NULL COMMENT 'Role', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='管理员表'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Administrator table'; /*!40101 SET character_set_client = @saved_cs_client */; @@ -102,10 +102,10 @@ CREATE TABLE `wa_options` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL COMMENT '键', `value` longtext NOT NULL COMMENT '值', - `created_at` datetime NOT NULL DEFAULT '2022-08-15 00:00:00' COMMENT '创建时间', - `updated_at` datetime NOT NULL DEFAULT '2022-08-15 00:00:00' COMMENT '更新时间', + `created_at` datetime NOT NULL DEFAULT '2022-08-15 00:00:00' COMMENT 'creation time', + `updated_at` datetime NOT NULL DEFAULT '2022-08-15 00:00:00' COMMENT 'Update time', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='选项表'; +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='Option List'; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -114,7 +114,7 @@ CREATE TABLE `wa_options` ( LOCK TABLES `wa_options` WRITE; /*!40000 ALTER TABLE `wa_options` DISABLE KEYS */; -INSERT INTO `wa_options` VALUES (1,'table_form_schema_wa_users','{\"id\":{\"field\":\"id\",\"comment\":\"主键\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":true,\"readonly\":false,\"searchable\":true,\"search_type\":\"普通查询\",\"control_args\":null},\"username\":{\"field\":\"username\",\"comment\":\"用户名\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"nickname\":{\"field\":\"nickname\",\"comment\":\"昵称\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"password\":{\"field\":\"password\",\"comment\":\"密码\",\"control\":\"Input\",\"form_show\":true,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"sex\":{\"field\":\"sex\",\"comment\":\"性别\",\"control\":\"Select\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":\"options:男:男,女:女\"},\"avatar\":{\"field\":\"avatar\",\"comment\":\"头像\",\"control\":\"Upload\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"multiple:false; maxNumber:1\"},\"email\":{\"field\":\"email\",\"comment\":\"邮箱\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"mobile\":{\"field\":\"mobile\",\"comment\":\"手机\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"level\":{\"field\":\"level\",\"comment\":\"等级\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"birthday\":{\"field\":\"birthday\",\"comment\":\"生日\",\"control\":\"DatePicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":\"showTime:false\"},\"money\":{\"field\":\"money\",\"comment\":\"余额\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"score\":{\"field\":\"score\",\"comment\":\"积分\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"last_time\":{\"field\":\"last_time\",\"comment\":\"上次登录时间\",\"control\":\"DatePicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"last_ip\":{\"field\":\"last_ip\",\"comment\":\"上次登录ip\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"join_time\":{\"field\":\"join_time\",\"comment\":\"注册时间\",\"control\":\"DatePicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"join_ip\":{\"field\":\"join_ip\",\"comment\":\"注册ip\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"token\":{\"field\":\"token\",\"comment\":\"token\",\"control\":\"Input\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"创建时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"更新时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"role\":{\"field\":\"role\",\"comment\":\"角色\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null},\"status\":{\"field\":\"status\",\"comment\":\"状态\",\"control\":\"Select\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":\"options:normal:normal,dsiabled:dsiabled\"}}','2022-08-15 00:00:00','2022-09-20 10:24:52'),(2,'table_form_schema_wa_admin_roles','{\"id\":{\"field\":\"id\",\"comment\":\"主键\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null},\"name\":{\"field\":\"name\",\"comment\":\"角色名\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"普通查询\",\"control_args\":null},\"rules\":{\"field\":\"rules\",\"comment\":\"权限\",\"control\":\"ApiTree\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":\"url:\\/app\\/admin\\/auth\\/adminrule\\/tree;multiple:true;checkable:true;checkStrictly:false\"},\"created_at\":{\"field\":\"created_at\",\"comment\":\"创建时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"between\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"更新时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null}}','2022-08-15 00:00:00','2022-08-29 18:04:47'),(3,'table_form_schema_wa_admin_rules','{\"id\":{\"field\":\"id\",\"comment\":\"主键\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null},\"title\":{\"field\":\"title\",\"comment\":\"标题\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"name\":{\"field\":\"name\",\"comment\":\"name(全局唯一)\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"pid\":{\"field\":\"pid\",\"comment\":\"上级菜单\",\"control\":\"ApiTreeSelect\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"url:\\/app\\/admin\\/common\\/menu\\/tree\"},\"component\":{\"field\":\"component\",\"comment\":\"前端组件\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"path\":{\"field\":\"path\",\"comment\":\"路径\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"icon\":{\"field\":\"icon\",\"comment\":\"图标\",\"control\":\"IconPicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"创建时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"更新时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null},\"frame_src\":{\"field\":\"frame_src\",\"comment\":\"url\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"hide_menu\":{\"field\":\"hide_menu\",\"comment\":\"隐藏菜单\",\"control\":\"Switch\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"is_menu\":{\"field\":\"is_menu\",\"comment\":\"是否菜单\",\"control\":\"Select\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":\"options:0:否,1:是\"}}','2022-08-15 00:00:00','2022-09-14 16:47:06'),(4,'table_form_schema_wa_admins','{\"id\":{\"field\":\"id\",\"comment\":\"ID\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":true,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"username\":{\"field\":\"username\",\"comment\":\"用户名\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"nickname\":{\"field\":\"nickname\",\"comment\":\"昵称\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"password\":{\"field\":\"password\",\"comment\":\"密码\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"avatar\":{\"field\":\"avatar\",\"comment\":\"头像\",\"control\":\"Upload\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"url:\\/app\\/admin\\/common\\/upload\\/avatar;maxNumber:1\"},\"email\":{\"field\":\"email\",\"comment\":\"邮箱\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"mobile\":{\"field\":\"mobile\",\"comment\":\"手机\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"创建时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"between\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"更新时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"roles\":{\"field\":\"roles\",\"comment\":\"角色\",\"control\":\"ApiTreeSelect\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"url:\\/app\\/admin\\/auth\\/adminrole\\/select?format=tree&status=normal\"}}','2022-08-15 00:00:00','2022-08-29 18:03:29'),(5,'table_form_schema_wa_options','{\"id\":{\"field\":\"id\",\"comment\":null,\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":true,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"name\":{\"field\":\"name\",\"comment\":\"键\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"value\":{\"field\":\"value\",\"comment\":\"值\",\"control\":\"InputTextArea\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"创建时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"更新时间\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"普通查询\",\"control_args\":null}}','2022-08-15 00:00:00','2022-08-30 20:46:56'); +INSERT INTO `wa_options` VALUES (1,'table_form_schema_wa_users','{\"id\":{\"field\":\"id\",\"comment\":\"primary key\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":true,\"readonly\":false,\"searchable\":true,\"search_type\":\"General query\",\"control_args\":null},\"username\":{\"field\":\"username\",\"comment\":\"username\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"nickname\":{\"field\":\"nickname\",\"comment\":\"Nick name\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"password\":{\"field\":\"password\",\"comment\":\"password\",\"control\":\"Input\",\"form_show\":true,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"sex\":{\"field\":\"sex\",\"comment\":\"gender\",\"control\":\"Select\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":\"options:男:男,女:女\"},\"avatar\":{\"field\":\"avatar\",\"comment\":\"avatar\",\"control\":\"Upload\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"multiple:false; maxNumber:1\"},\"email\":{\"field\":\"email\",\"comment\":\"Mail\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"mobile\":{\"field\":\"mobile\",\"comment\":\"cell phone\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"level\":{\"field\":\"level\",\"comment\":\"grade\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"birthday\":{\"field\":\"birthday\",\"comment\":\"Birthday\",\"control\":\"DatePicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":\"showTime:false\"},\"money\":{\"field\":\"money\",\"comment\":\"balance\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"score\":{\"field\":\"score\",\"comment\":\"integral\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"last_time\":{\"field\":\"last_time\",\"comment\":\"Last Login Time\",\"control\":\"DatePicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"last_ip\":{\"field\":\"last_ip\",\"comment\":\"Last Loginip\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"join_time\":{\"field\":\"join_time\",\"comment\":\"Registration time\",\"control\":\"DatePicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"join_ip\":{\"field\":\"join_ip\",\"comment\":\"registerip\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"token\":{\"field\":\"token\",\"comment\":\"token\",\"control\":\"Input\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"creation time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"Update time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"role\":{\"field\":\"role\",\"comment\":\"Role\",\"control\":\"InputNumber\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null},\"status\":{\"field\":\"status\",\"comment\":\"state\",\"control\":\"Select\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":\"options:normal:normal,dsiabled:dsiabled\"}}','2022-08-15 00:00:00','2022-09-20 10:24:52'),(2,'table_form_schema_wa_admin_roles','{\"id\":{\"field\":\"id\",\"comment\":\"primary key\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null},\"name\":{\"field\":\"name\",\"comment\":\"character name\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"General query\",\"control_args\":null},\"rules\":{\"field\":\"rules\",\"comment\":\"Permissions\",\"control\":\"ApiTree\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":\"url:\\/app\\/admin\\/auth\\/adminrule\\/tree;multiple:true;checkable:true;checkStrictly:false\"},\"created_at\":{\"field\":\"created_at\",\"comment\":\"creation time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"between\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"Update time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null}}','2022-08-15 00:00:00','2022-08-29 18:04:47'),(3,'table_form_schema_wa_admin_rules','{\"id\":{\"field\":\"id\",\"comment\":\"primary key\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null},\"title\":{\"field\":\"title\",\"comment\":\"title\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"name\":{\"field\":\"name\",\"comment\":\"name(Globally Unique)\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"pid\":{\"field\":\"pid\",\"comment\":\"Super Menu\",\"control\":\"ApiTreeSelect\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"url:\\/app\\/admin\\/common\\/menu\\/tree\"},\"component\":{\"field\":\"component\",\"comment\":\"Frontend Components\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"path\":{\"field\":\"path\",\"comment\":\"path\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"icon\":{\"field\":\"icon\",\"comment\":\"icon\",\"control\":\"IconPicker\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"creation time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"Update time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null},\"frame_src\":{\"field\":\"frame_src\",\"comment\":\"url\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"hide_menu\":{\"field\":\"hide_menu\",\"comment\":\"Hide menu\",\"control\":\"Switch\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"is_menu\":{\"field\":\"is_menu\",\"comment\":\"Whether menu\",\"control\":\"Select\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":\"options:0:否,1:是\"}}','2022-08-15 00:00:00','2022-09-14 16:47:06'),(4,'table_form_schema_wa_admins','{\"id\":{\"field\":\"id\",\"comment\":\"ID\",\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":true,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"username\":{\"field\":\"username\",\"comment\":\"username\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"nickname\":{\"field\":\"nickname\",\"comment\":\"Nick name\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"password\":{\"field\":\"password\",\"comment\":\"password\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"avatar\":{\"field\":\"avatar\",\"comment\":\"avatar\",\"control\":\"Upload\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"url:\\/app\\/admin\\/common\\/upload\\/avatar;maxNumber:1\"},\"email\":{\"field\":\"email\",\"comment\":\"Mail\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"mobile\":{\"field\":\"mobile\",\"comment\":\"cell phone\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"creation time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":true,\"search_type\":\"between\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"Update time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"roles\":{\"field\":\"roles\",\"comment\":\"Role\",\"control\":\"ApiTreeSelect\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":\"url:\\/app\\/admin\\/auth\\/adminrole\\/select?format=tree&status=normal\"}}','2022-08-15 00:00:00','2022-08-29 18:03:29'),(5,'table_form_schema_wa_options','{\"id\":{\"field\":\"id\",\"comment\":null,\"control\":\"InputNumber\",\"form_show\":false,\"list_show\":true,\"enable_sort\":false,\"readonly\":true,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"name\":{\"field\":\"name\",\"comment\":\"键\",\"control\":\"Input\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"value\":{\"field\":\"value\",\"comment\":\"值\",\"control\":\"InputTextArea\",\"form_show\":true,\"list_show\":true,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"normal\",\"control_args\":null},\"created_at\":{\"field\":\"created_at\",\"comment\":\"creation time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null},\"updated_at\":{\"field\":\"updated_at\",\"comment\":\"Update time\",\"control\":\"DatePicker\",\"form_show\":false,\"list_show\":false,\"enable_sort\":false,\"readonly\":false,\"searchable\":false,\"search_type\":\"General query\",\"control_args\":null}}','2022-08-15 00:00:00','2022-08-30 20:46:56'); /*!40000 ALTER TABLE `wa_options` ENABLE KEYS */; UNLOCK TABLES; @@ -126,32 +126,32 @@ DROP TABLE IF EXISTS `wa_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wa_users` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', - `username` varchar(32) NOT NULL COMMENT '用户名', - `nickname` varchar(40) NOT NULL COMMENT '昵称', - `password` varchar(255) NOT NULL COMMENT '密码', - `sex` enum('男','女') NOT NULL DEFAULT '男' COMMENT '性别', - `avatar` varchar(255) NOT NULL COMMENT '头像', - `email` varchar(128) DEFAULT NULL COMMENT '邮箱', - `mobile` varchar(16) DEFAULT NULL COMMENT '手机', - `level` tinyint(4) NOT NULL COMMENT '等级', - `birthday` date NOT NULL COMMENT '生日', - `money` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '余额', - `score` int(11) NOT NULL DEFAULT '0' COMMENT '积分', - `last_time` datetime DEFAULT NULL COMMENT '上次登录时间', - `last_ip` varchar(50) DEFAULT NULL COMMENT '上次登录ip', - `join_time` datetime DEFAULT NULL COMMENT '注册时间', - `join_ip` varchar(50) DEFAULT NULL COMMENT '注册ip', + `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'primary key', + `username` varchar(32) NOT NULL COMMENT 'username', + `nickname` varchar(40) NOT NULL COMMENT 'Nick name', + `password` varchar(255) NOT NULL COMMENT 'password', + `sex` enum('男','女') NOT NULL DEFAULT '男' COMMENT 'gender', + `avatar` varchar(255) NOT NULL COMMENT 'avatar', + `email` varchar(128) DEFAULT NULL COMMENT 'Mail', + `mobile` varchar(16) DEFAULT NULL COMMENT 'cell phone', + `level` tinyint(4) NOT NULL COMMENT 'grade', + `birthday` date NOT NULL COMMENT 'Birthday', + `money` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'balance', + `score` int(11) NOT NULL DEFAULT '0' COMMENT 'integral', + `last_time` datetime DEFAULT NULL COMMENT 'Last Login Time', + `last_ip` varchar(50) DEFAULT NULL COMMENT 'Last Loginip', + `join_time` datetime DEFAULT NULL COMMENT 'Registration time', + `join_ip` varchar(50) DEFAULT NULL COMMENT 'registerip', `token` varchar(50) DEFAULT NULL COMMENT 'token', - `created_at` datetime DEFAULT NULL COMMENT '创建时间', - `updated_at` datetime DEFAULT NULL COMMENT '更新时间', - `role` tinyint(4) NOT NULL DEFAULT '1' COMMENT '角色', - `status` enum('normal','dsiabled') NOT NULL DEFAULT 'normal' COMMENT '状态', + `created_at` datetime DEFAULT NULL COMMENT 'creation time', + `updated_at` datetime DEFAULT NULL COMMENT 'Update time', + `role` tinyint(4) NOT NULL DEFAULT '1' COMMENT 'Role', + `status` enum('normal','dsiabled') NOT NULL DEFAULT 'normal' COMMENT 'state', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), KEY `email` (`email`), KEY `mobile` (`mobile`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户表'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='user table'; /*!40101 SET character_set_client = @saved_cs_client */; --