1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- // +----------------------------------------------------------------------
- // | Tplay [ WE ONLY DO WHAT IS NECESSARY ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017 http://tplay.pengyichen.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 听雨 < 389625819@qq.com >
- // +----------------------------------------------------------------------
- namespace app\admin\model;
- use think\Model;
- class Admin extends Model
- {
- const SUPER_ADMIN_ID = 1;//默认超级管理员id
- public function admincate()
- {
- //关联角色表
- return $this->belongsTo('AdminCate');
- }
- public function article()
- {
- //关联文章表
- return $this->hasOne('Article');
- }
- public function log()
- {
- //关联日志表
- return $this->hasOne('AdminLog');
- }
- public function attachment()
- {
- //关联附件表
- return $this->hasOne('Attachment');
- }
- }
|