No Description

UmengApptrackAppRecPlan.class.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 UmengApptrackAppRecPlan extends SDKDomain {
  5. private $planId;
  6. /**
  7. * @return 计划Id
  8. */
  9. public function getPlanId() {
  10. return $this->planId;
  11. }
  12. /**
  13. * 设置计划Id
  14. * @param Integer $planId
  15. * 参数示例:<pre></pre>
  16. * 此参数必填 */
  17. public function setPlanId( $planId) {
  18. $this->planId = $planId;
  19. }
  20. private $planName;
  21. /**
  22. * @return 计划名称
  23. */
  24. public function getPlanName() {
  25. return $this->planName;
  26. }
  27. /**
  28. * 设置计划名称
  29. * @param String $planName
  30. * 参数示例:<pre></pre>
  31. * 此参数必填 */
  32. public function setPlanName( $planName) {
  33. $this->planName = $planName;
  34. }
  35. private $startDay;
  36. /**
  37. * @return 计划开始日期
  38. */
  39. public function getStartDay() {
  40. return $this->startDay;
  41. }
  42. /**
  43. * 设置计划开始日期
  44. * @param String $startDay
  45. * 参数示例:<pre></pre>
  46. * 此参数必填 */
  47. public function setStartDay( $startDay) {
  48. $this->startDay = $startDay;
  49. }
  50. private $endDay;
  51. /**
  52. * @return 计划结束日期
  53. */
  54. public function getEndDay() {
  55. return $this->endDay;
  56. }
  57. /**
  58. * 设置计划结束日期
  59. * @param String $endDay
  60. * 参数示例:<pre></pre>
  61. * 此参数必填 */
  62. public function setEndDay( $endDay) {
  63. $this->endDay = $endDay;
  64. }
  65. private $stdResult;
  66. public function setStdResult($stdResult) {
  67. $this->stdResult = $stdResult;
  68. if (array_key_exists ( "planId", $this->stdResult )) {
  69. $this->planId = $this->stdResult->{"planId"};
  70. }
  71. if (array_key_exists ( "planName", $this->stdResult )) {
  72. $this->planName = $this->stdResult->{"planName"};
  73. }
  74. if (array_key_exists ( "startDay", $this->stdResult )) {
  75. $this->startDay = $this->stdResult->{"startDay"};
  76. }
  77. if (array_key_exists ( "endDay", $this->stdResult )) {
  78. $this->endDay = $this->stdResult->{"endDay"};
  79. }
  80. }
  81. private $arrayResult;
  82. public function setArrayResult($arrayResult) {
  83. $this->arrayResult = $arrayResult;
  84. if (array_key_exists ( "planId", $this->arrayResult )) {
  85. $this->planId = $arrayResult['planId'];
  86. }
  87. if (array_key_exists ( "planName", $this->arrayResult )) {
  88. $this->planName = $arrayResult['planName'];
  89. }
  90. if (array_key_exists ( "startDay", $this->arrayResult )) {
  91. $this->startDay = $arrayResult['startDay'];
  92. }
  93. if (array_key_exists ( "endDay", $this->arrayResult )) {
  94. $this->endDay = $arrayResult['endDay'];
  95. }
  96. }
  97. }
  98. ?>