mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
modified 优化数据库模型,自建表关联
This commit is contained in:
parent
102362e84a
commit
d3eceaf8b0
@ -11,7 +11,7 @@ namespace app\model;
|
||||
class AdminAuthGroup extends Base {
|
||||
|
||||
public function rules() {
|
||||
return $this->hasMany('AdminAuthRule', 'groupId', 'id');
|
||||
return $this->hasMany('AdminAuthRule', 'group_id', 'id');
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -4,5 +4,5 @@ namespace app\model;
|
||||
|
||||
|
||||
class AdminMenu extends Base {
|
||||
//
|
||||
|
||||
}
|
||||
|
@ -10,4 +10,8 @@ namespace app\model;
|
||||
class AdminUser extends Base {
|
||||
protected $autoWriteTimestamp = true;
|
||||
|
||||
public function userData() {
|
||||
return $this->hasOne('AdminUserData', 'uid', 'id');
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user