123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
- include_once ('com/alibaba/openapi/client/entity/SDKDomain.class.php');
- include_once ('com/alibaba/openapi/client/entity/ByteArray.class.php');
- class UmengApptrackAppRecPlan extends SDKDomain {
-
- private $planId;
-
- /**
- * @return 计划Id
- */
- public function getPlanId() {
- return $this->planId;
- }
-
- /**
- * 设置计划Id
- * @param Integer $planId
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setPlanId( $planId) {
- $this->planId = $planId;
- }
-
-
- private $planName;
-
- /**
- * @return 计划名称
- */
- public function getPlanName() {
- return $this->planName;
- }
-
- /**
- * 设置计划名称
- * @param String $planName
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setPlanName( $planName) {
- $this->planName = $planName;
- }
-
-
- private $startDay;
-
- /**
- * @return 计划开始日期
- */
- public function getStartDay() {
- return $this->startDay;
- }
-
- /**
- * 设置计划开始日期
- * @param String $startDay
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setStartDay( $startDay) {
- $this->startDay = $startDay;
- }
-
-
- private $endDay;
-
- /**
- * @return 计划结束日期
- */
- public function getEndDay() {
- return $this->endDay;
- }
-
- /**
- * 设置计划结束日期
- * @param String $endDay
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setEndDay( $endDay) {
- $this->endDay = $endDay;
- }
-
-
- private $stdResult;
-
- public function setStdResult($stdResult) {
- $this->stdResult = $stdResult;
- if (array_key_exists ( "planId", $this->stdResult )) {
- $this->planId = $this->stdResult->{"planId"};
- }
- if (array_key_exists ( "planName", $this->stdResult )) {
- $this->planName = $this->stdResult->{"planName"};
- }
- if (array_key_exists ( "startDay", $this->stdResult )) {
- $this->startDay = $this->stdResult->{"startDay"};
- }
- if (array_key_exists ( "endDay", $this->stdResult )) {
- $this->endDay = $this->stdResult->{"endDay"};
- }
- }
-
- private $arrayResult;
- public function setArrayResult($arrayResult) {
- $this->arrayResult = $arrayResult;
- if (array_key_exists ( "planId", $this->arrayResult )) {
- $this->planId = $arrayResult['planId'];
- }
- if (array_key_exists ( "planName", $this->arrayResult )) {
- $this->planName = $arrayResult['planName'];
- }
- if (array_key_exists ( "startDay", $this->arrayResult )) {
- $this->startDay = $arrayResult['startDay'];
- }
- if (array_key_exists ( "endDay", $this->arrayResult )) {
- $this->endDay = $arrayResult['endDay'];
- }
- }
-
-
- }
- ?>
|