| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * Class Index_gem
- * * @author 王刚涛
- * 日线数据
- */
- class Index_gem {
- /***
- * @param $log
- * @return mixed
- * @throws Exception
- *
- */
- static public function add($attrs){
- if (empty($attrs)) throw new Exception('参数不能为空', 102);
- $Table_index_gem = new Table_index_gem();
- $id = $Table_index_gem->add($attrs);
- return $id;
- }
-
- /**
- * 管理员日志记录列表
- *
- * @param $page 当前页
- * @param $pagesize 每页大小
- *
- */
- static public function getListByPage($page, $pagesize){
- $filter = array();
- $Table_index_gem = new Table_index_gem();
- return $Table_index_gem->getList($filter, 0, $page, $pagesize);
- }
-
- //管理员日志总数
- static public function getCountAll(){
- $filter = array();
- $Table_index_gem = new Table_index_csi300();
- return $Table_index_gem->getList($filter, 1);
- }
- }
- ?>
|