You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
namespace tp5auth\model;
|
|
|
|
|
|
class AuthAccess extends \think\Model
|
|
{
|
|
// 设置完整的数据表(包含前缀)
|
|
protected $name = 'auth_access';
|
|
|
|
//初始化属性
|
|
protected function initialize()
|
|
{
|
|
|
|
}
|
|
|
|
//关联一对一 角色
|
|
public function authRole()
|
|
{
|
|
return $this->hasOne('AuthRule','menu_id','menu_id');
|
|
}
|
|
}
|
|
?>
|