query->from($this->stat_visit_table); if (!empty($params['uniacid'])) { $this->query->where('uniacid', $params['uniacid']); } if (!empty($params['date'])) { $this->query->where('date', $params['date']); } if (!empty($params['date >='])) { $this->query->where('date >=', $params['date >=']); } if (!empty($params['date <='])) { $this->query->where('date <=', $params['date <=']); } if (!empty($params['module'])) { $this->query->where('module', $params['module']); } if (!empty($params['type'])) { $this->query->where('type', $params['type']); } if ($type == 'one') { return $this->query->get(); } else { return $this->query->getall(); } } }