12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?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 UmengUappGetChannelDataParam {
-
- /**
- * @return 应用ID
- */
- public function getAppkey() {
- $tempResult = $this->sdkStdResult["appkey"];
- return $tempResult;
- }
-
- /**
- * 设置应用ID
- * @param String $appkey
- * 参数示例:<pre></pre>
- * 此参数必填 */
- public function setAppkey( $appkey) {
- $this->sdkStdResult["appkey"] = $appkey;
- }
-
-
- /**
- * @return 查询日期
- */
- public function getDate() {
- $tempResult = $this->sdkStdResult["date"];
- return $tempResult;
- }
-
- /**
- * 设置查询日期
- * @param String $date
- * 参数示例:<pre>2018-01-01</pre>
- * 此参数必填 */
- public function setDate( $date) {
- $this->sdkStdResult["date"] = $date;
- }
-
-
- /**
- * @return 每页显示数量(最大100)
- */
- public function getPerPage() {
- $tempResult = $this->sdkStdResult["perPage"];
- return $tempResult;
- }
-
- /**
- * 设置每页显示数量(最大100)
- * @param Integer $perPage
- * 参数示例:<pre></pre>
- * 此参数为可选参数
-
- * 默认值:<pre>10</pre>
- */
- public function setPerPage( $perPage) {
- $this->sdkStdResult["perPage"] = $perPage;
- }
-
-
- /**
- * @return 页数
- */
- public function getPage() {
- $tempResult = $this->sdkStdResult["page"];
- return $tempResult;
- }
-
- /**
- * 设置页数
- * @param Integer $page
- * 参数示例:<pre></pre>
- * 此参数为可选参数
-
- * 默认值:<pre>1</pre>
- */
- public function setPage( $page) {
- $this->sdkStdResult["page"] = $page;
- }
-
-
- private $sdkStdResult=array();
-
- public function getSdkStdResult(){
- return $this->sdkStdResult;
- }
- }
- ?>
|