예제 #1
0
 /**
  * PartitionManageAct::actListCount()
  * 返回某个条件结果统计的总数
  * @param string $where 查询条件
  * @return integer 总数量 
  */
 public function actListCount($where = '1')
 {
     $res = PartitionManageModel::modListCount($where);
     self::$errCode = PartitionManageModel::$errCode;
     self::$errMsg = PartitionManageModel::$errMsg;
     return $res;
 }