AdminLog.php 925 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Tplay [ WE ONLY DO WHAT IS NECESSARY ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017 http://tplay.pengyichen.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 听雨 < 389625819@qq.com >
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\model;
  12. use think\Model;
  13. class AdminLog extends Model
  14. {
  15. // 关闭自动写入update_time字段
  16. protected $updateTime = false;
  17. public function admin()
  18. {
  19. return $this->belongsTo('Admin');
  20. }
  21. public function menu()
  22. {
  23. return $this->belongsTo('AdminMenu');
  24. }
  25. }