SystemLogDao.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\dao\system\log;
  12. use app\dao\BaseDao;
  13. use app\model\system\log\SystemLog;
  14. /**
  15. * 系统日志
  16. * Class SystemLogDao
  17. * @package app\dao\system\log
  18. */
  19. class SystemLogDao extends BaseDao
  20. {
  21. /**
  22. * 设置模型
  23. * @return string
  24. */
  25. protected function setModel(): string
  26. {
  27. return SystemLog::class;
  28. }
  29. /**
  30. * 删除过期日志
  31. * @throws \Exception
  32. */
  33. public function deleteLog()
  34. {
  35. $this->getModel()->where('add_time', '<', time() - 7776000)->delete();
  36. }
  37. /**
  38. * 获取系统日志列表
  39. * @param array $where
  40. * @param int $page
  41. * @param int $limit
  42. * @return array
  43. * @throws \think\db\exception\DataNotFoundException
  44. * @throws \think\db\exception\DbException
  45. * @throws \think\db\exception\ModelNotFoundException
  46. */
  47. public function getLogList(array $where, int $page, int $limit)
  48. {
  49. return $this->search($where)->page($page, $limit)->order('add_time DESC')->select()->toArray();
  50. }
  51. }