No Description

UmengApptrackGetPlanListParam.class.php 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
  3. include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
  4. class UmengApptrackGetPlanListParam {
  5. /**
  6. * @return 当前页数
  7. */
  8. public function getPageNum() {
  9. $tempResult = $this->sdkStdResult["pageNum"];
  10. return $tempResult;
  11. }
  12. /**
  13. * 设置当前页数
  14. * @param Integer $pageNum
  15. * 参数示例:<pre></pre>
  16. * 此参数为可选参数
  17. * 默认值:<pre>1</pre>
  18. */
  19. public function setPageNum( $pageNum) {
  20. $this->sdkStdResult["pageNum"] = $pageNum;
  21. }
  22. /**
  23. * @return 每页显示的记录数
  24. */
  25. public function getPageSize() {
  26. $tempResult = $this->sdkStdResult["pageSize"];
  27. return $tempResult;
  28. }
  29. /**
  30. * 设置每页显示的记录数
  31. * @param Integer $pageSize
  32. * 参数示例:<pre></pre>
  33. * 此参数为可选参数
  34. * 默认值:<pre>10</pre>
  35. */
  36. public function setPageSize( $pageSize) {
  37. $this->sdkStdResult["pageSize"] = $pageSize;
  38. }
  39. private $sdkStdResult=array();
  40. public function getSdkStdResult(){
  41. return $this->sdkStdResult;
  42. }
  43. }
  44. ?>