OperateLog.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace catchAdmin\system\model;
  3. use catchAdmin\permissions\model\Users;
  4. use catcher\traits\db\BaseOptionsTrait;
  5. use catchAdmin\system\model\search\OperateLogSearch;
  6. class OperateLog extends \think\Model
  7. {
  8. use BaseOptionsTrait;
  9. use OperateLogSearch;
  10. protected $name = 'operate_log';
  11. protected $field = [
  12. 'id', //
  13. 'module', // 模块名称
  14. 'operate', // 操作模块
  15. 'route', // 路由
  16. 'params', // 参数
  17. 'ip', // ip
  18. 'creator_id', // 创建人ID
  19. 'method', // 请求方法
  20. 'created_at', // 登录时间
  21. ];
  22. /**
  23. * get list
  24. *
  25. * @time 2020年04月28日
  26. * @param $params
  27. * @throws \think\db\exception\DbException
  28. * @return void
  29. */
  30. public function getList()
  31. {
  32. return $this->field([$this->aliasField('*')])
  33. ->catchJoin(Users::class, 'id', 'creator_id', ['username as creator'])
  34. ->catchSearch()
  35. ->order($this->aliasField('id'), 'desc')
  36. ->paginate();
  37. }
  38. }