| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /***
- * Class St_log
- * * @author 王刚涛
- * 日线数据
- */
- class St_log {
- /**
- * 记录管理员日志
- *
- * @param $log 日志内容
- *
- */
- static public function add($log){
- }
-
- /**
- * 管理员日志记录列表
- *
- * @param $page 当前页
- * @param $pagesize 每页大小
- *
- */
- static public function getListByPage($page, $pagesize){
- $filter = array();
- $Table_st_log = new Table_st_log();
- return $Table_st_log->getList($filter, 0, $page, $pagesize);
- }
-
- //管理员日志总数
- static public function getCountAll(){
- $filter = array();
- $Table_st_log = new Table_st_log();
- return $Table_st_log->getList($filter, 1);
- }
- }
- ?>
|