No Description

UmengUappGetAppListParam.class.php 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/SDKDomain.class.php');
  3. include_once (app_path('/libs/Umeng/').'com/alibaba/openapi/client/entity/ByteArray.class.php');
  4. class UmengUappGetAppListParam {
  5. /**
  6. * @return 页号,从1开始
  7. */
  8. public function getPage() {
  9. $tempResult = $this->sdkStdResult["page"];
  10. return $tempResult;
  11. }
  12. /**
  13. * 设置页号,从1开始
  14. * @param Integer $page
  15. * 参数示例:<pre>1</pre>
  16. * 此参数为可选参数
  17. * 默认值:<pre></pre>
  18. */
  19. public function setPage( $page) {
  20. $this->sdkStdResult["page"] = $page;
  21. }
  22. /**
  23. * @return 每页显示数量(最大100)
  24. */
  25. public function getPerPage() {
  26. $tempResult = $this->sdkStdResult["perPage"];
  27. return $tempResult;
  28. }
  29. /**
  30. * 设置每页显示数量(最大100)
  31. * @param Integer $perPage
  32. * 参数示例:<pre>10</pre>
  33. * 此参数为可选参数
  34. * 默认值:<pre></pre>
  35. */
  36. public function setPerPage( $perPage) {
  37. $this->sdkStdResult["perPage"] = $perPage;
  38. }
  39. private $sdkStdResult=array();
  40. public function getSdkStdResult(){
  41. return $this->sdkStdResult;
  42. }
  43. }
  44. ?>