mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
16 lines
254 B
PHP
16 lines
254 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @since 2018-02-08
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace app\model;
|
|
|
|
class AdminAuthGroup extends Base {
|
|
|
|
public function rules() {
|
|
return $this->hasMany('AdminAuthRule', 'group_id', 'id');
|
|
}
|
|
}
|