| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace App\Module\Fund\Services;
- use App\Module\Fund\Service\Log;
- /**
- * 日志服务
- *
- */
- class LogService
- {
- /**
- * 日志记录
- *
- * @param $where
- * @param $page
- * @param $rows
- * @return \Illuminate\Pagination\LengthAwarePaginator
- */
- public function log_list($where, $page, $rows = 5)
- {
- $log = new Log();
- $page = $log->lists($where, $page, $rows);
- return $page;
- }
- public function statistical($where)
- {
- $log = new Log();
- $page = $log->statistical($where);
- return $page;
- }
- }
|