修改table属性

This commit is contained in:
Anyon 2020-11-24 10:58:33 +08:00
parent f41131f9a2
commit 17a17b2f3e
5 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ class Config extends Controller
* 绑定数据表
* @var string
*/
protected $table = 'SystemConfig';
private $table = 'SystemConfig';
/**
* 系统参数配置

View File

@ -33,7 +33,7 @@ class Menu extends Controller
* 当前操作数据库
* @var string
*/
protected $table = 'SystemMenu';
private $table = 'SystemMenu';
/**
* 系统菜单管理

View File

@ -30,7 +30,7 @@ class Oplog extends Controller
* 绑定数据表
* @var string
*/
public $table = 'SystemOplog';
private $table = 'SystemOplog';
/**
* 系统日志管理

View File

@ -33,7 +33,7 @@ class Queue extends Controller
* 绑定数据表
* @var string
*/
protected $table = 'SystemQueue';
private $table = 'SystemQueue';
/**
* 系统任务管理

View File

@ -29,7 +29,7 @@ class User extends Controller
* 绑定数据表
* @var string
*/
public $table = 'SystemUser';
private $table = 'SystemUser';
/**
* 系统用户管理