Esempio n. 1
0
 /**
  * ProductStockalarmAct::actList()
  * 列出符合条件的数据并分页显示
  * @param string $where 查询条件
  * @param integer $page 页码
  * @param integer $pagenum 每页个数
  * @return array 结果集数组
  */
 public function actList($where = '1', $page = 1, $pagenum = 20)
 {
     $res = ProductStockalarmModel::modList($where, $page, $pagenum);
     return $res;
 }