sdkStdResult["page"]; return $tempResult; } /** * 设置页号,从1开始 * @param Integer $page * 参数示例:
1
* 此参数为可选参数 * 默认值:

          */
    public function setPage( $page) {
        $this->sdkStdResult["page"] = $page;
    }
    
        
        /**
    * @return 每页显示数量(最大100)
    */
        public function getPerPage() {
        $tempResult = $this->sdkStdResult["perPage"];
        return $tempResult;
    }
    
    /**
     * 设置每页显示数量(最大100)     
     * @param Integer $perPage     
     * 参数示例:
10
* 此参数为可选参数 * 默认值:

          */
    public function setPerPage( $perPage) {
        $this->sdkStdResult["perPage"] = $perPage;
    }
    
        
    private $sdkStdResult=array();
    
    public function getSdkStdResult(){
    	return $this->sdkStdResult;
    }

}
?>