OperateLog.php 987 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. namespace catchAdmin\system\controller;
  3. use catcher\base\CatchController;
  4. use catcher\CatchResponse;
  5. use catchAdmin\system\model\OperateLog as Log;
  6. class OperateLog extends CatchController
  7. {
  8. /**
  9. *
  10. * @time 2020年04月28日
  11. * @param Log $log
  12. * @throws \think\db\exception\DbException
  13. * @return \think\response\Json
  14. */
  15. public function list(Log $log)
  16. {
  17. return CatchResponse::paginate($log->getList());
  18. }
  19. /**
  20. *
  21. * @time 2020年04月28日
  22. * @param Log $log
  23. * @throws \Exception
  24. * @return \think\response\Json
  25. */
  26. public function empty(Log $log)
  27. {
  28. return CatchResponse::success($log->where('id', '>', 0)->delete(), '清空成功');
  29. }
  30. /**
  31. * 批量删除
  32. *
  33. * @param mixed $id
  34. * @param Log $log
  35. * @return \think\response\Json
  36. */
  37. public function delete($id, Log $log)
  38. {
  39. return CatchResponse::success($log->deleteBy($id));
  40. }
  41. }