12345678910111213141516171819202122232425262728293031 |
- <?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 AdminLog extends Model
- {
- // 关闭自动写入update_time字段
- protected $updateTime = false;
- public function admin()
- {
- return $this->belongsTo('Admin');
- }
- public function menu()
- {
- return $this->belongsTo('AdminMenu');
- }
- }
|