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