12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengUappGetAppListParam {
-
- /**
- * @return 页号,从1开始
- */
- public function getPage() {
- $tempResult = $this->sdkStdResult["page"];
- return $tempResult;
- }
-
- /**
- * 设置页号,从1开始
- * @param Integer $page
- * 参数示例:<pre>1</pre>
- * 此参数为可选参数
-
- * 默认值:<pre></pre>
- */
- public function setPage( $page) {
- $this->sdkStdResult["page"] = $page;
- }
-
-
- /**
- * @return 每页显示数量(最大100)
- */
- public function getPerPage() {
- $tempResult = $this->sdkStdResult["perPage"];
- return $tempResult;
- }
-
- /**
- * 设置每页显示数量(最大100)
- * @param Integer $perPage
- * 参数示例:<pre>10</pre>
- * 此参数为可选参数
-
- * 默认值:<pre></pre>
- */
- public function setPerPage( $perPage) {
- $this->sdkStdResult["perPage"] = $perPage;
- }
-
-
- private $sdkStdResult=array();
-
- public function getSdkStdResult(){
- return $this->sdkStdResult;
- }
- }
- ?>
|