ActionLogModel.php 379 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\index\model;
  3. use think\Model;
  4. class ActionLogModel extends Model {
  5. // 确定链接表名
  6. protected $name = 'action_log';
  7. public function getActionLogsByWhere( $offset , $limit)
  8. {
  9. return $this->limit($offset, $limit)->order('id desc')->select();
  10. }
  11. public function getAllCounts()
  12. {
  13. return $this->count();
  14. }
  15. }