$adminid, 'content' => $log ); $Table_adminlog = new Table_adminlog(); return $Table_adminlog->add($attr); } /** * 管理员日志记录列表 * * @param $page 当前页 * @param $pagesize 每页大小 * */ static public function getListByPage($page, $pagesize){ $filter = array(); $Table_adminlog = new Table_adminlog(); return $Table_adminlog->getList($filter, 0, $page, $pagesize); } //管理员日志总数 static public function getCountAll(){ $filter = array(); $Table_adminlog = new Table_adminlog(); return $Table_adminlog->getList($filter, 1); } } ?>