This commit is contained in:
邹景立 2017-02-16 13:58:14 +08:00
parent 27c596b10f
commit c59cd84777
2 changed files with 6 additions and 2 deletions

View File

@ -12,8 +12,10 @@ use controller\BasicAdmin;
*/ */
class Role extends BasicAdmin { class Role extends BasicAdmin {
public function index() { protected $table = 'SystemRole';
public function index() {
parent::_list($this->table);
} }
} }

View File

@ -12,8 +12,10 @@ use controller\BasicAdmin;
*/ */
class User extends BasicAdmin { class User extends BasicAdmin {
public function index() { protected $table = 'SystemUser';
public function index() {
parent::_list($this->table);
} }
} }